Hi Gayathri,
Use the below code into your CheckedChanged event,
protected void chkInTheatres_CheckedChanged1(object sender, EventArgs e)
{
CheckBox cb = (CheckBox)sender;
if (cb.Checked == true)
{
Response.Write("InTheatres");
}
else
{
Response.End();
}
}
Best Ragards,
Sabarees M
Gayathri, if this helps please login to Mark As Answer. |
Reply | Alert Moderator