Hi, hope this will help.. I'll just use your current terms used in this thread.
1 Dim objReader As MySqlDataReader
2 Dim comm As MySqlCommand
3
4 comm = new MySqlCommand("SELECT * FROM detail", MyConnection)
5 objReader = comm.ExecuteReader()
6
7 Do while objReader.Read
8 Response.write(objReader("field_name_here"))
9 Loop
10
11 myconnection.close()
12 myconnection.dispose()
13 objreader.close
14
15
happy coding!
Cheers,
CLIPER
------------------------------------------------
Believe nothing, no matter where you read it, or who said it, no matter if I have said it, unless it agrees with your own reason and your own commonsense. ---Buddha (563BC-483BC)