Asp.net में Radio button control

asp net radio button control and properties

Radio button एक asp.net web server control है। Radio button का उपयोग उपयोगकर्ता को Radio buttons के समूह से एक Radio button का चयन करने के लिए किया जाता है। asp.net में आम तौर पर हम एक से अधिक Radio button का उपयोग करते हैं और सभी Radio button controls में से एक समय में केवल एक Radio button का चयन करते हैं। दूसरी ओर checkbox control में हम एक बार में कई checkbox control को check और uncheck कर सकते हैं।

ASP.Net में RadioButton Control का उदाहरण

आइये Radio button control के बारे में अधिक समझने के लिए एक asp.net radiobutton का उदाहरण लें।

ASP.Net में radio button control की कुछ महत्वपूर्ण properties हैं :- Checked = true/false, यह दर्शाता है की radiobutton control checked है या unchecked |

GroupName = GroupName property का उपयोग radio button के एक group को बनाने के लिए किया जाता है। यदि हम एक से अधिक radio button को एक ही value प्रदान करते हैं तो हम radio button के उस group से केवल एक radio button का चयन कर सकते हैं।

asp.net web form के लिए html design code :-

<body>
  <form id="form1" runat="server">
  <div>
  
    <table align="center" class="style1" style="border: thin solid #008080">
      <tr>
        <td class="style2" 
          style="text-align: center; border-bottom-style: solid; border-bottom-width: thin; border-bottom-color: #008080;">
          RadioButton Control in ASP.Net</td>
      </tr>
      <tr>
        <td style="text-align: center">
 
           
          </td>
      </tr>
      <tr>
        <td style="text-align: center">
          <asp:RadioButton ID="radiored" runat="server" Text="RED" GroupName="my" />
 
          <asp:RadioButton ID="radioblue" runat="server" Text="BLUE" GroupName="my" />
 
          <asp:RadioButton ID="radiogreen" runat="server" Text="GREEN" GroupName="my" 
            oncheckedchanged="radiogreen_CheckedChanged" />
        </td>
      </tr>
      <tr>
        <td style="text-align: center">
          <asp:Button ID="Button1" runat="server" Height="26px" onclick="Button1_Click" 
            style="font-weight: 700" Text="Select" />
        </td>
      </tr>
      <tr>
        <td style="text-align: center">
          <asp:Label ID="Label1" runat="server"></asp:Label>
        </td>
      </tr>
      </table>
  
  </div>
  </form>
</body>

C# कोड के पीछे का code

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

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

  }
  protected void Button1_Click(object sender, EventArgs e)
  {
    if (radiored.Checked == true)
    {
      Label1.Text = "You Selected Red";
    }
    else if (radioblue.Checked == true)
    {
      Label1.Text = "You Selected Blue";
    }
    else
    {
      Label1.Text = "You Selected Green";
    }
  }
}

 



error: Content is protected !!