M
Miro
Hi!
How can I get a path from a Html (or aspx, it doesn't
matter) to an aspx-site.
I'm sending a path (C:\dir...\file) from the html-page
within a querystring:
in the page_load i recieve the path:
....but I can't use it in for example:
The debuggger shows an "@" in front of the path-string:
/Miro
How can I get a path from a Html (or aspx, it doesn't
matter) to an aspx-site.
I'm sending a path (C:\dir...\file) from the html-page
within a querystring:
page.aspx?path=C:\dir...\file
in the page_load i recieve the path:
String path = Request.QueryString["path"];
....but I can't use it in for example:
File.Exist(path);
The debuggger shows an "@" in front of the path-string:
@"C:\dir...\file"
/Miro