I need to attach a datareader column to a datalist text box...
Dim dp As SqlDataReader = SQL_Data_admin.GetVol_LookUp_admin(Session("ssn"), txtlname.Text, Session("User_org"))
dp.Read()
...Here i need to Attach my return to textbox in a datalist..specific data..
like ssn, address, fname, lname, phone number. to a datalist text box's.
I have some HTML code that calls a container..will it still work if I use the .Read without Binding them? I am a bit confused as you can tell...any suggestions would be appreciated. thanks in advance..
Dim dp As SqlDataReader = SQL_Data_admin.GetVol_LookUp_admin(Session("ssn"), txtlname.Text, Session("User_org"))
dp.Read()
...Here i need to Attach my return to textbox in a datalist..specific data..
like ssn, address, fname, lname, phone number. to a datalist text box's.
I have some HTML code that calls a container..will it still work if I use the .Read without Binding them? I am a bit confused as you can tell...any suggestions would be appreciated. thanks in advance..