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...!"
Is the check
strSQL = "SELECT username, password FROM users WHERE username = '" & Request.Form("yourusername") & "' AND passwrod = '" &Request.Form("yourpasswrod")&"'"
Set rstChkAgain = objConn.Execute(strSQL)
if not rstChkAgain.EOF then...
Is the check
strSQL = "SELECT username, password FROM users WHERE username = '" & Request.Form("yourusername") & "' AND passwrod = '" &Request.Form("yourpasswrod")&"'"
Set rstChkAgain = objConn.Execute(strSQL)
if not rstChkAgain.EOF then...
If not is database
if not rstChkAgain.EOF then
Response.write "results "&rstChkAgain("username")
else
Response.write "Nothing found"
End if Regards gsc1ugs
"Cant see wood for tree's...!"
...fielddesc FROM cart WHERE iIndex = 3"
Set rstChk = objConn.Execute(strSQL)
partDesc = rstChk("fielddesc")
strSQL = "SELECT * FROM cart WHERE fielddesc = '" & partDesc & "'"
Set rstChkAgain = objConn.Execute(strSQL)
if not rstChkAgain.EOF then...
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.