ASP Hiding Variables in Address Bar

Discussion in 'C#' started by vijaykoul, Jan 11, 2005.

  1. #1
    i want to hide the querystring arguments which have a natural tendency of
    getting displayed in the addressbar....even if POST method is used

    how can i
     
    vijaykoul, Jan 11, 2005 IP
  2. J.D.

    J.D. Peon

    Messages:
    1,198
    Likes Received:
    65
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Make sure you have <title> defined inside <head>. This should take care of your problem.

    J.D.
     
    J.D., Jan 11, 2005 IP
  3. vijaykoul

    vijaykoul Guest

    Messages:
    43
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    <title> is defined inside <head>
     
    vijaykoul, Jan 23, 2005 IP
  4. J.D.

    J.D. Peon

    Messages:
    1,198
    Likes Received:
    65
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Did you edit your original post? I must've had some example to post the reply above...

    Anyway, to answer your orgiginal question, you will not see form parameters in the URL line if you use the POST method to submit the form. If you do see them , this means that a) you use JS to submit the form and manually create the URL or b) your browser ignores the method attribute of the form (none of the standard browsers would do this).

    Check your server logs and make sure that the request is logged as POST.

    J.D.
     
    J.D., Jan 29, 2005 IP