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 strongm 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: ziyun
  • Order by date
  1. ziyun

    Creating and opening Excel Document in ASP

    hi, u can try going to this website: http://www.codeave.com/asp/code.asp?u_log=143 it will displays excel in the client browser
  2. ziyun

    Get an IP Address from an ASP page

    u can use this code: <% Request.ServerVariables(&quot;REMOTE_ADDR&quot;) %>
  3. ziyun

    Display Names of Logged-in users

    u can try this instead of doing session_onend() to track the logout time of the visitors: <script language=&quot;JavaScript&quot;> function exit() { 'the coding u want... e.g. alert(&quot;hello!&quot;); } </SCRIPT> 'call the function exit() when u close the application <BODY onunload =...
  4. ziyun

    Display Names of Logged-in users

    hi, i have the same problem as schase... my session_onstart did work but not for session_onend when i close the application. for my case, i want to track the logout time but cannot. Is it because of the OS i am using as i am using win xp??
  5. ziyun

    SQL Current_Date Query Help

    u could try this: <%@ Language=VBScript %> <% dim d, f d = date() 'get the date of today f = d + 14 'get the date after 14 days 'setting up the database connection dim conn, rs, cmd Set conn = Server.CreateObject(&quot;ADODB.Connection&quot;) conn.Open...
  6. ziyun

    adodb connection string

    i don't know if this is the type of coding u want... 'setting up the database connection dim conn, rs, cmd Set conn = Server.CreateObject(&quot;ADODB.Connection&quot;) conn.Open &quot;DSN=cecpeople;UID=Account Name;PASSWORD=password;&quot; set rs = server.CreateObject...
  7. ziyun

    track and storing logout time in database

    hi, i need help on storing the user logout time in the database. i can only track the user login time in the session_onstart in global.asa, but i can't seem to update the user logout time into the database when the user close the application. Do anyone know how i can track the user logout time??
  8. ziyun

    Grab web page

    May i know how 2 grab a web page using vbscript instead of javascript??
  9. ziyun

    Having Visual j++ problem on win xp

    How come there is no such packages: com.ms.mtx.* and com.ms.asp.* in j++ when i run the software in win xp??

Part and Inventory Search

Back
Top