forum

Home / DeveloperSection / Forums / Listview databind error

Listview databind error

marcel ethan 1945 03-Feb-2014

I currenty have a stored procedure that I am running and hoping to bind the data from the sp with my list view. However, I am unsure of how to go upon doing this.

Here is my current code. I was thinking it was similar to databinding a gridview but got lost doing it.

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();
    }


c# c# 
Updated on 03-Feb-2014

Can you answer this question?


Answer

1 Answers

Liked By