I would like to know how to send plus symbol (+) over http link because when I try to send it after encoding like this %2B still I am getting empty space. If I try with + I am getting double empty space. Please help me on that.
I am sending like this to the page using the browser:
localhost:/CPA-API/MT.aspx?msg=Testing%2BTesting
and receiving from the code behind like this:
msg = Server.UrlDecode(Request.QueryString["msg"].ToString());
But I am getting output like this:
msg = Testing Testing
Thanks in advance.