+1 vote
in JEE by kratos

Differentiate between ASP and HTML.

1 Answer

+3 votes
by kratos
 
Best answer
  • HTML file generates static pages, but ASP file generates dynamic pages.

– When a browser sends a requests to the web server for an HTML file the server returns the file as it is to the browser, but when a browser sends a request to the web server for an ASP file, IIS passes the request to the ASP engine having a special program ASP.dll. This ASP file is processed line by line and executes the server side scripts(<% %>) in the file. Finally, the ASP file is returned to the browser as plain HTML.

...