ערכתי לאחרונה בתאריך 01.04.07 בשעה 18:02 בברכה, ronen333
To draw an id all u need to do is make a virtual table and then draw it as a field.example from my site when i used to draw an id:
<% Set oConn = Server.CreateObject("ADODB.Connection") Set tableRs=Server.CreateObject("ADODB.Recordset")oConn.Open "Driver={Microsoft Access Driver (*.mdb)};" & _ "Dbq= D:\content\users1\aviad\db\rishum.mdb;" & _ "Uid=admin;" & _ "Pwd=;" mySql= "Select * From table1 WHERE fname='"& Request.Form("nick") &"'" tableRs.Open mySql, oConn,3,3 %> <% TheID=tableRs.Fields("id") %> <% tableRs.Close oConn.Close Set tableRs=nothing Set oConn= nothing %>
|
this is the importent line-
<% TheID=tableRs.Fields("id") %>
|

