Users Pricing

forum

Home Forums Not able to fetch data from sql database in asp.net web application using vb – MindStick

Not able to fetch data from sql database in asp.net web application using vb

Anonymous User 2013 27 Nov 2014

I am using the below code to fetch data from SQL, I am not getting any error but code is not working on button click 

Dim strSQL As String = String.Empty
strSQL = "SELECT * from jhg"
Using connection As New SqlConnection  (ConfigurationManager.ConnectionStrings("xyz").ConnectionString)
    Dim command As New SqlCommand(strSQL, connection)
    connection.Open()
    reader As SqlDataReader = command.ExecuteReader()
    While reader.Read()
        GridView1.DataSource = reader
    End While
'end connection and using close


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md