Sunday, October 22, 2017

ஏஎஸ்பி .நெட் பற்றிய எனது நான்காவது பகுதி

Asp.net my fourth video.
ஏஎஸ்பி .நெட் பற்றிய எனது நான்காவது வீடியோ.




Design
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="WebApplication12.WebForm2" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
 
        <asp:TextBox ID="TextBox1" runat="server" AutoPostBack="True" OnTextChanged="TextBox1_TextChanged"></asp:TextBox>
        <br />
        <br />
        <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Click" />
 
    </div>
    </form>
</body>
</html>
coding:


protected void Button1_Click(object sender, EventArgs e)
        {
            Response.Write("hai" + TextBox1.Text);

        }

        protected void TextBox1_TextChanged(object sender, EventArgs e)
        {
            Response.Write("hai " + TextBox1.Text);
        }




to learn programming on various topics:
contact :9629329142

ads Udanz

No comments:

Post a Comment