ASP.NET Introduction
Before you learn ASP.NET, you should have a basic understanding of HTML and
know how to create a basic Web page. Also, you should have some knowledge about
Scripting languages like JavaScript or PHP
This following code displays an example of an ASP .NET page:
<html>
<body>
<%Response.Write('Hello. This is my first ASP.NET page!')%>
</body>
</html>
Now, copy the above the code, and save it in a file name: "myfirstpage.aspx"
under any virtual web directory. Then open a browser with the URL path to page.
You will see the result:
Hello. This is my first ASP.NET page!
|