ASP.NET அடிப்படை
டூல்ஸ்.-பகுதி-2 தமிழ்.
இந்த வீடியோவில்
asp.net பேசிக் டூலான டெக்ஸ்ட் பாக்ஸ் பற்றி காண இருக்கின்றோம்.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="textboxdemo.WebForm1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<br />
USER NAME:
<asp:TextBox ID="TextBox1" runat="server" AutoPostBack="True" OnTextChanged="TextBox1_TextChanged"></asp:TextBox>
<br />
<br />
PASSWORD:<asp:TextBox ID="TextBox2" runat="server" TextMode="Password"></asp:TextBox>
<br />
<br />
<br />
COMMENTS<asp:TextBox ID="TextBox3" runat="server" Height="161px" TextMode="MultiLine" Width="288px"></asp:TextBox>
<br />
<br />
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="SUBMIT" />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<asp:Label ID="Label1" runat="server" Text="--"></asp:Label>
</div>
</form>
</body>
</html>
ஸ்கிரிப்டிங்.
protected void TextBox1_TextChanged(object sender, EventArgs e)
{
TextBox1
.Text=((TextBox1.Text).Trim ().ToUpper());
}
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = " thank you " +
TextBox1.Text + " for your following
contents" + "<br/>" +
TextBox3.Text;
}
நன்றி
மீண்டும் நாளை சந்திப்போம்.
முத்து கார்த்திகேயன்,மதுரை.
No comments:
Post a Comment