Dear Team,
I want to validate Radionbutton in gridview (not using javascript) in button click event
Dear Team,
I want to validate Radionbutton in gridview (not using javascript) in button click event
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.
ArshadPosted Mar 13, 2009, 6:14 AM
Firts find that Control in the Gridview.
RadiaButton rb=new RadiaButton();
rb=grdv.findcontrol("Control Name from the Inline Code")
if(rb.Checked==false)
{
Response.Write("You Forget to check the Radio Button");
}
Thanks