Hello World in HTML
save as .htm on notepad then open it in browser.Code:<html> <body bgcolor="Blue"> <center> <h2>Hello world</h2> </center> </body> </html>
Hello World in ASP.Net
The simplest way to convert an HTML page into an ASP.NET page is to copy the HTML file to a new file with an .aspx extension.
save the code in a file called "firstpage.aspx".Code:<html> <body bgcolor="Blue"> <center> <h2>Hello world</h2> </center> </body> </html>
Bookmarks