Hi Guys
I have a GridView with RadioButton,My dropdownlist pope up date. If I select previous date it should enable RadioButton on my GridView. This is working perfect before I publish it but after publishing it is not working any idea.Please note the problem is after publish it.
foreach (GridViewRow gvr in GridView1.Rows)
{
RadioButton cb = (RadioButton)gvr.FindControl("RadioButton4");
RadioButton cb1 = (RadioButton)gvr.FindControl("RadioButton3");
cb.Enabled = false;
cb1.Enabled = false;
}
Thanks
1 Reply
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajeev PunhaniPosted Apr 8, 2016, 9:18 AM
If the above solution is helpful then,accept the answer.