Sunday, October 29, 2017

ASP.NET பேசிக் கண்ட்ரோல்- -4 வது பகுதி ரேடியோ பட்டன்.

இந்த வீடியோவில் நாம் ரேடியோ பட்டன் குறித்து காண இருக்கின்றோம்.

Source code:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm4.aspx.cs" Inherits="textboxdemo.WebForm4" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server" style="background-color: #00FFFF">
    <div>
   
        please select a pet:<br />
        <asp:RadioButton ID="radCat" runat="server" GroupName="pet" Text="Cat" />
        <br />
        <br />
        <asp:RadioButton ID="radDog" runat="server" GroupName="pet" Text="Dog" />
        <br />
        <br />
        <asp:RadioButton ID="radParrot" runat="server" GroupName="pet" Text="Parrot." />
        <br />
        <br />
        <br />
        <asp:Button ID="btnSubmit" runat="server" Text="Submit" OnClick="btnSubmit_Click" />
        <br />
        <br />
        <br />
        <asp:Label ID="lblOutput" runat="server" Text="--"></asp:Label>
   
    </div>
    </form>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace textboxdemo
{
    public partial class WebForm4 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void btnSubmit_Click(object sender, EventArgs e)
        {
            if (radCat.Checked)
            {
                lblOutput.Text = "you selected Cat";
            }
            else if (radDog.Checked)
            {
                lblOutput.Text = "you selecte Dog";
            }
            else if (radParrot.Checked)
            {
                lblOutput.Text = "you selected Parrot";
            }
        }
    }
}
நன்றி மீண்டும் நாளை சந்திப்போம்.
முத்து கார்த்திகேயன்,மதுரை.


ads Udanz

No comments:

Post a Comment