Click here to Skip to main content
15,903,388 members

Comments by Member 12306844 (Top 5 by date)

Member 12306844 23-Sep-19 2:00am View    
Hi there, Can you please help me on this.
Member 12306844 25-Jul-16 3:21am View    
thank you.
Member 12306844 23-Feb-16 4:22am View    
i have two tables department(Did,Dname,Hod) Fac(Did,Fid,Fname,Subjects),
i have bind departments in the gridview. if i select the one department record i need to bind fac data in the other page in the gridview....based on the Did
Member 12306844 19-Feb-16 8:55am View    
i need which option the user selected so that i will make how many of them are correct in the other page to provide result to them...
Member 12306844 19-Feb-16 8:52am View    
later i tried this...

protected void btnnext_Click(object sender, EventArgs e)
{
foreach(RepeaterItem item in RepDetails.Items)
{
int a, b, c, d; ;
RadioButton box1 = (RadioButton)item.FindControl("RadioButton1");
RadioButton box2 = (RadioButton)item.FindControl("RadioButton2");
RadioButton box3 = (RadioButton)item.FindControl("RadioButton3");
RadioButton box4 = (RadioButton)item.FindControl("RadioButton4");
if (box1.Checked)
{
a = 1;
b = c = d = 0;
}
if (box2.Checked)
{
b = 1;
a = c = d = 0;
}
if (box3.Checked)
{
c = 1;
a = b = d = 0;
}
if (box4.Checked)
{
d = 1;
a = c = b = 0;
}

lblvalue.Text = a.ToString;
Label2.Text = b.ToString();
Label3.Text = c.ToString();
Label4.Text = d.ToString();



}
Response.Redirect("mock1.aspx?value=" + lblvalue.Text+"&value1="+Label2.Text+"&value2="+Label3.Text+"&value3="+Label4.Text);


}