encoding

Ampersand problems with GET in dotnet

The problem: your data has ampersands (&) in it, but you must submit it as a query string to your asp dot net app. After you have sent it, however, the string is truncated at the & character.

The solution: HttpUtility.URLEncode/.URLDecode to send query strings that contain ampersands as data.

The story:

Syndicate content