Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: gsc1ugs
  • Order by date
  1. gsc1ugs

    Display Names of Logged-in users

    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...!"
  2. gsc1ugs

    Check if recordset column exists

    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...!"
  3. gsc1ugs

    Display Names of Logged-in users

    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...!"
  4. gsc1ugs

    Why session end but connection still there

    FYI Smart pointers C++ stuff Regards gsc1ugs "Cant see wood for tree's...!"
  5. gsc1ugs

    Why session end but connection still there

    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...!"
  6. gsc1ugs

    If record is not there.. what to do?

    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...
  7. gsc1ugs

    double quotation mark problem with SQL2000

    It worked fine with me... try the above code Regards gsc1ugs "Cant see wood for tree's...!"
  8. gsc1ugs

    ASP, Page through and Show In columns

    I'll look again... thought this was different thread Regards gsc1ugs "Cant see wood for tree's...!"
  9. gsc1ugs

    If record is not there.. what to do?

    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...
  10. gsc1ugs

    Why session end but connection still there

    May be some setting in your browser.. this is just a stab though. Regards gsc1ugs "Cant see wood for tree's...!"
  11. gsc1ugs

    Why session end but connection still there

    Yeh... a new session should start there and end Regards gsc1ugs "Cant see wood for tree's...!"
  12. gsc1ugs

    db is already opened exclusively by another user ?

    Look at the permissions set for the db. Regards gsc1ugs "Cant see wood for tree's...!"
  13. gsc1ugs

    Changing SQL connection strings

    Wrap somthing like this on each...connection On Error Resume Next //do create stuff here if Err<>0 then strErr = strErr & &quot;<br>Error is <b>&quot; & Err.description & &quot; Else // go for it. End if Regards gsc1ugs &quot;Cant see wood for tree's...!&quot;
  14. gsc1ugs

    Microsoft OLE DB Provider for ODBC Drivers error '80040e21'. Weird!

    I got this just the other day when inputing wrong data types in text fields. Regards gsc1ugs &quot;Cant see wood for tree's...!&quot;
  15. gsc1ugs

    Why session end but connection still there

    Try Session.Abandon... Regards gsc1ugs &quot;Cant see wood for tree's...!&quot;
  16. gsc1ugs

    db is already opened exclusively by another user ?

    Yes.. close the db in question. Regards gsc1ugs &quot;Cant see wood for tree's...!&quot;
  17. gsc1ugs

    If record is not there.. what to do?

    Is the check strSQL = &quot;SELECT username, password FROM users WHERE username = '&quot; & Request.Form(&quot;yourusername&quot;) & &quot;' AND passwrod = '&quot; &Request.Form(&quot;yourpasswrod&quot;)&&quot;'&quot; Set rstChkAgain = objConn.Execute(strSQL) if not rstChkAgain.EOF then...
  18. gsc1ugs

    If record is not there.. what to do?

    Is the check strSQL = &quot;SELECT username, password FROM users WHERE username = '&quot; & Request.Form(&quot;yourusername&quot;) & &quot;' AND passwrod = '&quot; &Request.Form(&quot;yourpasswrod&quot;)&&quot;'&quot; Set rstChkAgain = objConn.Execute(strSQL) if not rstChkAgain.EOF then...
  19. gsc1ugs

    If record is not there.. what to do?

    If not is database if not rstChkAgain.EOF then Response.write &quot;results &quot;&rstChkAgain(&quot;username&quot;) else Response.write &quot;Nothing found&quot; End if Regards gsc1ugs &quot;Cant see wood for tree's...!&quot;
  20. gsc1ugs

    double quotation mark problem with SQL2000

    Hi... just managed get it going.... dont know what your connection is but here's the code i used <% DIM objConn Set objConn = Server.CreateObject(&quot;ADODB.Connection&quot;) Application(&quot;DBConnect&quot;)=whateveryoursis&quot; objConn.Open(Application(&quot;DBConnect&quot;)) strSQL...

Part and Inventory Search

Back
Top