I am passing a query string parameter containing file name.
default.aspx?file=Fame+ adlabs.xml
(Fame+ adlabs.xml
is the actual file name on server). The file name has "+" & also blank spaces.
When I check for file name from query string as follows:
var fileName = Request.QueryString["file"];
The variable filename does not have a "+" in it. It reads as "Fame adlabs.xml"
& hence I get a file not found exception. I cannot rename the xml files. Can someone please guide me into right direction.
Thanks