You can create asp.net application by using text editor. such as notepad, editpad and saving the file with a ".aspx" extension. To create a simple ASP.NET application by using Notepad, perform the following steps. :
<html>
<head>
<title>My First WebPage</title>
<script language="C#" runat="server">
void Page_Load(object sender, System.EventArgs e)
{
if(IsPostBack)
{
UserMessage.Text="Welcome " + txtUName.Text +" , Your Password is: " + txtUPassword.Text;
}
}
</script>
<body>
<form runat="server">
Name : <asp:textbox id="txtUName" runat="server" />
Password : <asp:textbox id="txtUPassword" textmode="password" runat="server" />
<asp:button text="Click Here" runat="server" />
<asp:label id="UserMessage" runat="server" />
</form>
</body>
</html>