Tagged Questions

1
vote
1answer
43 views

Request.Querystring removes characters from encrypted text

In my application I take a user's e-mail address, encrypt it, and URLEncode it, and pass it along into a QueryString. email = Server.UrlEncode(aes.Encrypt(email)); The landing page does a …
0
votes
2answers
22 views

Extracting Query String From eExteranl

Is it possible (and appropriate) to open a new window to an external URL, have my users process a form on that site (which generates a query string with name/value pairs) and then parse the pairs of …
0
votes
4answers
134 views

Page.Request.QueryString has a value although none was passed to the page

We have the following code that is returning a value of "3" although no value is passed as a query string. Is there some way that the "id" is getting stuck in the server memory (since it is not user …
10
votes
10answers
2k views

How do you test your Request.QueryString[] variables?

I frequently make use of Request.QueryString[] variables. In my Page_load I often do things like: int id = -1; if (Request.QueryString["id"] != null) { try { …
0
votes
2answers
106 views

Is it possible to skip a HttpHandler if there is no querystring?

I wrote a dynamic image resizer as a HttpHandler. It's automatically called on anything with an image extension, so for example: http://www.mysite.com/picture.jpg?width=200&height=100 will run …
1
vote
4answers
421 views

Whats the problem with this encrypted QueryString- Invalid length for a Base-64 char array.

I am encrypting a text and sending it via QueryString. "8ZnSq13yv2yYVDsehDnNUNp/yIFqsAQh4XNPbV1eLMpk/dMWpc/YnMMEBy29MlgcYqpV2XPOf/Rpiz5S85VN/fkLbGTCkL/clBHh983Cp s=" The Decrypt Function is given …
0
votes
5answers
789 views

Converting Request.QueryString to integer

How do i convert a Request.Quesry string to an integer value. I've tried all the Convert.ToInt32 and Int32.Parse but it says Input string is not in the correct format. Im using the string value as an …