Posted on: 9/29/2014 5:15:51 PM | Views : 385

Hi everyone ^^   How I can get all the Radio button checked from ASP.NET page, when I build the control items at Back-end (server side) as below :

DataTable dt = DA.GetDataForBlog(); QueMainContent.InnerHtml = "<div class=\"Content_Ques\" id=\"Content_Ques\">"; QueMainContent.InnerHtml += "<div class=\"QuestLab_\">" + " Personal information " + "</div>"; if (dt.Rows.Count > 0) { for (int i = 0; i < 3; i++) { QueMainContent.InnerHtml += "<span>"; QueMainContent.InnerHtml += "<div class=\"QuetTitle\">" + dt.Rows[i]["QAR"].ToString() + "</div>"; QueMai ...

Go to the complete details ...