I have been trying to display the records from SQL server in a sequential manner using vb.net, but only the last record is displyed. how to display ????? in vb we were using rs.MoveNext and how to use in this.
While dr.Read
TextBox1.Text = dr(0).ToString( )
TextBox2.Text = dr(1).ToString( )
End While
do help me out soon!!!!!!!!!!!
While dr.Read
TextBox1.Text = dr(0).ToString( )
TextBox2.Text = dr(1).ToString( )
End While
do help me out soon!!!!!!!!!!!
Comment