views:

39

answers:

3

I have designed my web page in asp.net its in aspx page. i need to covert it into html page .Because my server not support .aspx page help me to solve this issue

+1  A: 
  1. Remove all the server side code
  2. Rename the file

or

  1. Open in web browser
  2. Pick Save As
David Dorward
A: 

put it on a server that supports asp, and then view the source and copy to a static html file

wowo_999
+1  A: 

Open it on your local machine in a browser, view the source (View | Source in IE, View | Page Source in Firefox etc ), then save that page source as pagename.html.

Obviously you'll lose any asp.net page methods etc.

amelvin