Thanks for the suggestions !!
But it is not the way i want.. i have one asp page which allow user to modify any of the fileds value after login.. I first scan the user details and shows up in one form and want user to update the profile...
This is what i am doing..
Dim conn,rs,bolfound
set conn = Server.CreateObject("ADODB.Connection")
set rs = Server.CreateObject("ADODB.Recordset")
conn.open ............
rs.open "clp,conn, , ,adCmdtable
bolfound = false
Do while NOT (rs.EOF OR bolfound)
if( Strcomp(rs("screenname"), Session("screenname"),vbtextcompare)= 0) then
bolfound = true
else
rs.movenext
End if
loop
%>
and then records listing are displaying like..
-----------
--------
and at end..
rs.update
hope this time.. i am much more clearer then earlier..