How to retrieve the particular column row to the text box?
I mean how to display it in textbox?
The column has got different rows.
The code I wrote in vb net is :
cmd = New SqlCommand("select ida from Issue where aname='" + TextBox3.Text + "'", con)
In the above line I compare the textbox3 data in the table.
And if the data matches then it should display **the ida that matches with aname row ** to textbox4.
I am doing something wrong for sure as I wrote it int his way:
textbox4.text=cmd.ToString.
The above line din't give any error and it din't show anything in textbox4 also.
So ,how to display it?