Hi , i am new to vb.net can anyone help me how to use recordset in vb.net.
Basically this is the asp code and i want to do this in vb.net.
sql = " select * from product "
rs.open sql, conn
while not rs.eof do
productname = rs("ProductName")
Id = rs ("productId")
rs.Movenext
loop
Regards