Page

How to checked RadioButton on page load in asp.net

<%@ Page Language="C#" %>  
  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  
<script runat="server">  
    protected void page_Load(object sender, System.EventArgs e)  
    {  
        RadioButton2.Checked = true;  
    }  
</script>  
  
<html xmlns="http://www.w3.org/1999/xhtml">  
<head id="Head1" runat="server">  
    <title>How to checked RadioButton on page load</title>  
</head>  
<body>  
    <form id="form1" runat="server">  
    <div>  
        <h2 style="color:Red">RadioButton Example: Checked On Page Load</h2>  
        <asp:Label   
             ID="Label1"  
             runat="server"  
             Font-Bold="true"  
             ForeColor="Green"  
             Text="Favorite Color?"  
             >  
        </asp:Label>  
        <br />  
        <asp:RadioButton   
             ID="RadioButton1"   
             runat="server"  
             Text="LightGoldenRodYellow"  
             GroupName="Colors"  
             />  
        <asp:RadioButton   
             ID="RadioButton2"   
             runat="server"  
             Text="LightGray"  
             GroupName="Colors"  
             />  
    </div>  
    </form>  
</body>  
</html>  

No comments:

Post a Comment