I think there's a better way to track this... look for user link9.. seems to know alot about this. Regards gsc1ugs
"Cant see wood for tree's...!"
If columns exist.... you could just do a query on that column and if exists then
if not rs.EOF then
get it
else
dont do anything
end if
just a quicky Regards gsc1ugs
"Cant see wood for tree's...!"
Put all the names into a session variable and log time... you could have a multi-dimensional array to hold both of these information.
Regards gsc1ugs
"Cant see wood for tree's...!"
Is there smart pointers or similar with asp cause they know when the db is free and close automatically Regards gsc1ugs
"Cant see wood for tree's...!"
Sorry your correct
SQL = "SELECT * FROM users WHERE username=" & "'" & Request.QueryString("username") & "'"
If you feel the thread as been useful then you click the
Click here to mark this post as a helpful or expert post!
Tara :-0 Regards gsc1ugs...
This is wrong
StrSQL = "SELECT * FROM users WHERE username=" & "'" & Request.QueryString("username") & "'"
Should be
StrSQL = "SELECT * FROM users WHERE username=" & '" & Request.QueryString("username") & "'
Is the...
Wrap somthing like this on each...connection
On Error Resume Next
//do create stuff here
if Err<>0 then
strErr = strErr & "<br>Error is <b>" & Err.description & "
Else
// go for it.
End if Regards gsc1ugs
"Cant see wood for tree's...!"
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.