I am currently having an issue with radio buttons and grouping. I have an asp radio button within a repeater control. I have the group name attribute set to \"Customer\". Wh
I had the same issues. I am using Literal as placeholder to render radio button onItemCreated event.
ASP.Net
C#
protected void rpt_OnItemCreated(object sender, RepeaterItemEventArgs e) { Literal lit = (Literal)e.Item.FindControl("lit"); lit.Text = ""; }