Link to home
Start Free TrialLog in
Avatar of PagodNaUtak
PagodNaUtakFlag for Philippines

asked on

Example code using 'System.Web.UI.HtmlControls.HtmlInputCheckBox'

Hi, I need your help on how to use the 'System.Web.UI.HtmlControls.HtmlInputCheckBox'  in codebehind.
Please provide me an example:
ASKER CERTIFIED SOLUTION
Avatar of enzogoy
enzogoy

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi,

Check code.

Regards,
VSS

---------------
//Default.aspx
---------------
<<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server" method="post">
        <div>            
            <asp:Button ID="btnTest" runat="server" Text="Test" OnClick="btnTest_Click" />
            <input type="Checkbox" id="inChkBox" runat="server" value="yes" title="yes" /><asp:Label ID="lblResult" Text="yes" runat="Server"/>          
        </div>
    </form>
</body>
</html>

-----------------
//Default.aspx.cs
------------------
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {
         
    }
    protected void btnTest_Click(object sender, EventArgs e)
    {
        HtmlInputCheckBox chk = (HtmlInputCheckBox)this.FindControl("inChkBox");

        if (chk.Value=="yes")
        {
            lblResult.Text = "No";
        }
    }     
}

Open in new window