ASP - How to use the ASP.Net



To begin with ASP.NET you need an Integrated Development Environment (IDE) that supports the Microsoft .NET platform. The standard choice is to use Microsoft’s own Visual Studio. Several light versions of this IDE can be downloaded for free from Microsoft’s web site.


Sample Code in ASP.Net

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

 
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
  <title>Untitled Page</title>
</head>
<body>
  <form id="form1" runat="server">
 
  </form>
</body>
</html>




Untitled Page






0 comments:

Post a Comment