asp.net radio button grouping

后端 未结 10 498
余生分开走
余生分开走 2020-12-05 09:47

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

10条回答
  •  情书的邮戳
    2020-12-05 10:45

    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 = "";
    }
    

提交回复
热议问题