Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
Imports System.Data.Odbc
Imports System.Data
Partial Class VIEW_SALARY_DETAILS
     Inherits System.Web.UI.Page

   Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
    Dim cons, query As String
    Dim con As OdbcConnection
    Dim adpt As OdbcDataAdapter
    cons = "dsn=Courier; UID=Courier; PWD=123;"
    con = New OdbcConnection(cons)
    con.Open()
    query = "select * from EMPLOYEE"
    Dim ds As DataSet
    adpt = New OdbcDataAdapter(query, con)
    ds = New DataSet
    adpt.Fill(ds, "Courier")
    GridView1.DataSource = ds.Tables()
    con.Close()
   End Sub
End Class

I wrote the above code but it does not display data. Same thing is possible in VB.NET application. How do we do it for ASP.net 4.0?

share|improve this question

2 Answers

You'll need to call the DataBind() method. Try this

GridView1.DataSource = ds.Tables()
DataBind()
share|improve this answer
Now it works......thanks a lot..... – Pramod Lokare Sep 17 '12 at 17:54

You missed a line after

GridView1.DataSource = ds.Tables[0]   //do some correction here..

GridView1.DataBind();        // add this line

You need to bind the GridView with the Datasource..

Your code will be

Imports System.Data.Odbc
Imports System.Data
Partial Class VIEW_SALARY_DETAILS
     Inherits System.Web.UI.Page

   Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
    Dim cons, query As String
    Dim con As OdbcConnection
    Dim adpt As OdbcDataAdapter
    cons = "dsn=Courier; UID=Courier; PWD=123;"
    con = New OdbcConnection(cons)
    con.Open()
    query = "select * from EMPLOYEE"
    Dim ds As DataSet
    adpt = New OdbcDataAdapter(query, con)
    ds = New DataSet
    adpt.Fill(ds, "Courier")
    GridView1.DataSource = ds.Tables[0]
    GridView1.DataBind()
    con.Close()
   End Sub
End Class

Ensure that connection or sql string you used should be correct.

share|improve this answer
above database connection is correct.....I am become able to insert values into database using above type of connection .... but unable displaying whole table data into gridview...... – Pramod Lokare Sep 16 '12 at 13:49
"DataKeyNames must be specified for persisted selection to work." This error occured – Pramod Lokare Sep 16 '12 at 13:56
Why you have set persistant selection property to true.Remove Old GridView First don't know what you have done.. Take a new GridView from Toolbox. select autogenerated column property true. hope this will be running fine. – Vedank Kulshrestha Sep 16 '12 at 18:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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