Hello, I have the following code
Response.ContentType = "text/html";
string FilePath = MapPath("out.html");
Response.WriteFile(FilePath);
Response.End();
And all it does is output a blank web page but when I view the source all the html is there?
How do I configure it so that the web page is not blank?
Regards
...
Go to the complete details ...