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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by lxon

  1. lxon

    Server.MapPath( )

    Thanks a lot!!
  2. lxon

    Server.MapPath( )

    <% Dim strDatabaseType 'Choose one of the following two lines, and comment out the other strDatabaseType = &quot;Access&quot; 'strDatabaseType = &quot;MSDE&quot; 'Now we use this selection to specify the connection string' If strDatabaseType = &quot;Access&quot; Then strConnect...
  3. lxon

    formatting of links

    <% if Request.Cookies(&quot;strStatus&quot;)=&quot;admin&quot; then %> some text <a href=&quot;mypage.asp&quot; onClick=&quot;NewWindow(this.href,'test','750','500','no','center');return false&quot;>mypage</a> <%elseif Request.Cookies(&quot;strStatus&quot;)=&quot;guest&quot; then%> some...
  4. lxon

    formatting of links

    Is there anyway to format or block out the &quot;&quot; to ensure that my command gets done exactly the way i want it? Coz it seems that when i do this, not only does the pop up window gets directed to mypage.asp the original page does as well. I have to use the response.write() becoz it's...
  5. lxon

    Calling a javascript var from asp

    if that is the case is can i make use of my ASP variable to run a javascript? example i have a variable status: status can be admin or guest depending on the login type so the code will look some how like <%ASP CODE if status = &quot;admin&quot;%> run some javascript <%ASP CODE else if...
  6. lxon

    Calling a javascript var from asp

    alright the code is something like that var jStatus = document.cookie.indexOf('strStatus'); strStatus is the name of the cookie n jStatus is what i'm trying to call from the asp file. i just wanna to display the value of jStatus on the asp file.
  7. lxon

    Calling a javascript var from asp

    How do i call a javascript variable from an asp page?

Part and Inventory Search

Back
Top