Is there any way of displaying an asp page with out deploying it or running it off a port. I am trying to display the page like you would display an html page. Is there any way to treat the asp page like an html page.
how to view an asp page like HTML Page
Collapse
X
-
Hi Sheena777,
No, an ASP Page must always be run via the IIS - there is no way to display it as you would an html page (by double clicking on it for instance).
Dr B -
Hi,
In case of ASP page Html tags and code are placed on the same page.
HTML and code are seperated using <%> tag. If you do not include any code using <%> tag , the content of ASP page will be displayed as HTML page.
But you will require IIS in order to run the ASP page while simple HTML page
dont require IIS server.Comment
Comment