converting aspx page to HTML

how can i convertaspxpages toHtML pages. plese help me out. if there is any tool available for that please let me know.

Amit Grover

[171 byte] By [AmitGrover] at [2007-12-17]
# 1

You'll have to be a little more specific. ASPX pages are dynamically converted to HTML by the ASPNET_ISAPI.dll process when a request is made to the IIS web server. Since I suspect ;) that isn't what you mean, under what circumstances are you trying to convert ASPX to HTML?

BJohnson at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...
# 2
You could use the WebClient client class to download html from a URI.


WebClient webClient = new WebClient();
webClient.DownloadFile("http://localhost/test/test.aspx", "C:\\test.htm");

pwelter34 at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...
# 3
hi

may be u can use frames ..........and make the page have one frame which has
a source of your .aspx page

Taha at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...