Results 1 to 2 of 2

Thread: easy javascript question

  1. #1
    BG
    Guest

    easy javascript question

    I need to do the following vbscript block only using javascript. I have no choice but to use javascript. I wish I did

    <%somevariable = request.querystring("datafield")%>

  2. #2
    Fanatic Member Psyrus's Avatar
    Join Date
    Jul 2000
    Location
    NJ
    Posts
    602
    It can be done in JavaScript.

    Use this:

    myVar = location.search;

    This retrieves the querystring, including the "?"

    Just use some string parsing to get your values.


    Chris
    Chris

    VB 6.0 Calendar App Video Gamers Group
    Don't forget to rate people if they helped you.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width