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
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();
Re: Request.QueryString problem
thanks for that, but it won't make any different.