protected void RadioButton1_CheckedChanged(object sender, EventArgs e)
{
if (RadioButton1.Checked == true)
{
lblSupplier.Visible = true;
ddlSupplierName.Visible = true;
lblFinancialYear.Visible = true;
ddlYear.Visible = true;
btnSearch.Visible = true;
}
it's not working..
Iftikar HussainPosted Jul 9, 2013, 2:24 AM
Iftikar
Riyaz AkhtarPosted Jul 9, 2013, 2:34 AM
aspx:
.cs:
Sanjeeb LenkaPosted Jul 9, 2013, 2:31 AM
if it not work then delete the radiobutton and again insert it and check. and change the id of the radiobutton
Hardik PatelPosted Jul 9, 2013, 2:17 AM
Iftikar HussainPosted Jul 9, 2013, 1:58 AM
Please put AutoPostBack=True in your ASPX code.
Iftikar
Sanjeeb LenkaPosted Jul 9, 2013, 1:55 AM