CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 2002
    Location
    Australia
    Posts
    207

    Request.QueryString problem

    Hi guys,

    i am Request.QueryString["pwd"] to get the pwd value from the below url, but it cannot give me a right value.

    URL:
    http://www.mydomain.com/default.aspx...u+wZVvb1AMjpU=

    the value i get:
    E0dODy0X8Jb2KAGrOdrmaSiTWBEOEIu wZVvb1AMjpU=

    + sign is missing in the string

    I've tried using HtmlEncode, UrlEncode and UrlPathEncode, but still can't get it right. Can anyone teach me how to solve this problem?

    Thanks

  2. #2
    Join Date
    Mar 2007
    Posts
    144

    Re: Request.QueryString problem

    I am pretty new to this, but have you tried capturing the encoded password as a string i.e

    Code:
    Request.QueryString["pwd"].toString();

  3. #3
    Join Date
    Oct 2002
    Location
    Australia
    Posts
    207

    Re: Request.QueryString problem

    thanks for that, but it won't make any different.

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

Featured