Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more: (untagged)
Hi freinds,
Iam creating radio buttons at runtime it is working fine in internet explorer but with firefox it is very difficult to select radio button.

I am using ASP.NET c#,version 2.0
this is the code iam using,

RadioButton rd = new RadioButton();
rd.ID = "id" + i.ToString();
rd.Text = ans[i];
rd.GroupName = "dynrd";

And binding needed RB to Panel like this,

Panel1.Controls.Add(rd);

How to solve it....I can select radio button but it is very difficult to select.

modified on Monday, December 22, 2008 8:43 AM
Posted

1 solution

what does 'difficult to select' mean ? It sounds like your firefox is not drawing the radio buttons well. You have to explain yourself better. If the buttons are too small, try using CSS to make them bigger perhaps ?

 
Share this answer
 


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900