我目前有一个正在运行的存储过程,并希望将 sp 中的数据与我的列表视图绑定。但是,我不确定如何继续这样做。
这是我当前的代码。我在想它类似于对 gridview 进行数据绑定,但在这样做时迷路了。
HTML
<asp:ListView runat="server">
<LayoutTemplate>
<table>
<tr style="background-color:green">
<th><asp:LinkButton ID="lnkid" runat="server">Role ID</asp:LinkButton></th>
<th><asp:LinkButton ID="lnkdesc" runat="server">Role Description</asp:LinkButton></th>
</tr>
</table>
</LayoutTemplate>
<ItemTemplate>
<tr>
<td><asp:Label runat="server" ID="lblroleid">Role ID</asp:Label></td>
<td><asp:Label runat="server" ID="lblroledesc">Role Desc></asp:Label></td>
</tr>
</ItemTemplate>
<AlternatingItemTemplate>
<tr style="background-color:Aqua">
<td><asp:Label runat="server" ID="lblroleid">Role ID</asp:Label></td>
<td><asp:Label runat="server" ID="lblroledesc">Role Desc</asp:Label></td>
</tr>
</AlternatingItemTemplate>
</asp:ListView>
C#
protected void roles()
{
txtSearch.Focus();
string[] queryvalue = txtSearch.Text.Split(' ');
SqlConnection myconn = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["Rollup2ConnectionString"].ConnectionString);
SqlCommand cmd = new SqlCommand();
cmd.CommandType = CommandType.StoredProcedure;
cmd.CommandText = "USP_GET_USER_ROLES";
cmd.Connection = myconn;
cmd.Parameters.Add("@NUID", SqlDbType.VarChar).Value = queryvalue[0].ToString();
myconn.Open();
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = new DataSet();
da.Fill(ds);
myconn.Close();
myconn.Dispose();
}