Yes, as I discovered this is also important when using Base64-encoded
strings in the QueryString. Here's what I use to combat frustration:
string sOKForBase64Decrypt =
Server.UrlDecode(Request.QueryString["argument"].ToString()).Replace("
","+")
-- Sean M
John Grandy said:
Does Server.URLDecode() need to be applied to Request.QueryString(<key
name>) ?