|
ASP.NET page is same
as an HTML page.
As we know that an HTML page has the extension of .htm.
The server sends the page to the browser without any
modifications,if a browser requests an HTML page from the server.
An ASP.NET page has the extension .aspx and if a
browser requests an ASP.NET page, the server
processes any executable code in the page, before
the result is sent back to the browser.
The ASP.NET page do not contain any
executable code, so nothing is executed. In the next
examples we will add some executable code to the
page to demonstrate the difference between dynamic ASP pages and static
HTML pages.
|