what is it ? showasp.asp?filename=demo_cookies

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nnegaresh
    New Member
    • Oct 2006
    • 2

    what is it ? showasp.asp?filename=demo_cookies

    hi dear
    well actually i need to know about the structure of some URL LIke it
    http://www.w3schools.c om/asp/showasp.asp?fil ename=demo_cook ies
    how can i learn to use this kind of url
    i mean that as u see in this url showasp.asp is a file
    and its request is demo_coo...
    i need to know how can i learn to use such a this link
    please help me;)
  • scripto
    New Member
    • Oct 2006
    • 143

    #2
    http://www.w3schools.c om/asp/showasp.asp?fil ename=demo_cook ies

    this url will redirect you to the showasp.asp page, and when you get there, you can access the value of filename like this:

    dim myfile
    myfile = request.Queryst ring("filename" )

    myfile now equals demo_cookies. This is just a way to pass infor from one page to another (not very secure). Take a look at Session variables also.

    Comment

    • nnegaresh
      New Member
      • Oct 2006
      • 2

      #3
      well.. thanx alot
      but is it possible to make an example in two or 3 pages
      it was some thing strenge to me!
      the other thing is that u didnot say anything about representing this value of file name
      Last edited by nnegaresh; Oct 20 '06, 08:28 PM. Reason: not enough

      Comment

      Working...