hi all,
i am using encryption and decryption for query string variable
i am encrypting the url value before assign to url
Response.Redirect(
"DownloadPrintFiles.aspx?url=" + Encrypt(e.CommandArgument.ToString(), true));
encrypted url value is 6p39b2r4+L88jZwad7Wiu/O48DcV7s0dEcvTvXv97DKHu3/7Yn0DnnEuBP+KLLmsyoUEgjjPjnc=
string
folderToBrowse = Request.QueryString["url"] == null ? System.Configuration.ConfigurationManager.AppSettings["PrintedFilePath"] : Decrypt(Request.QueryString["url"], true);
now i am retriving the url value from request.querystring["url"],true)
i am getting output as 6p39b2r4 L88jZwad7Wiu/O48DcV7s0dEcvTvXv97DKHu3/7Yn0DnnEuBP KLLmsyoUEgjjPjnc=
what i am observed is in when i am retriveing the url from http path its replacing the + symbol with space character
can any help on this topic and what i have to do to avoid such problem please help me
thanks in advance