vote up 0 vote down star

How can I populate an editable Grid with data from different tables from MSSQL Server'05 writing a code behind function???

I have used:

    Dim conn As New SqlConnection(conn_web)
    Dim objCmd As New SqlDataAdapter(sql, conn)
    Dim oDS As New DataSet

    objCmd.Fill(oDS, "TAB")

    Dim dt As DataTable = oDS.Tables(0)
    Dim rowCount As Integer = dt.Rows.Count
    Dim dr As DataRow = dt.NewRow()
    If rowCount = 0 Then
        e.DataSource = Nothing
        e.DataBind()
        e.Focus()

    Else
        e.DataSource = dt
        e.DataBind()
    End If
flag
2  
I don't understand the question. – d03boy Apr 18 at 14:33

1 Answer

vote up 0 vote down

I think this boils down to the e variable: What is it referencing?

I'm afraid that it's the EventArgs argument from your Page_Load method (am I right?).

In order to do what you're trying to do, it needs to refer to an instance of a GridView web control.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.