单选按钮列表动态事件不起作用

单选按钮列表动态事件不起作用

本文介绍了单选按钮列表动态事件不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经动态添加了Radiobuttonlist控件,并为该控件添加了一个事件
但该方法未调用

这里的代码

i have added a Radiobuttonlist control dynamically and added a event for that control
but the method is not calling

here the code

RadioButtonList rdolst = new RadioButtonList();
                        rdolst.ID = Qno;
                        rdolst.RepeatDirection = rep;
                        rdolst.Items.Add("A");
                        rdolst.Items.Add("B");
                        rdolst.Items.Add("C");
                        rdolst.Items.Add("D");
   rdolst.SelectedIndexChanged += new EventHandler(ddl_SelectedIndexChanged);



添加方法后



after i have added the method

public void ddl_SelectedIndexChanged(object sender, System.EventArgs e)
        {
            RadioButtonList rdoAns = (RadioButtonList)sender;
            string vlistindex = Convert.ToString(rdoAns.ID).Substring(6);
        }



此方法未调用

请帮助我:(



this method is not calling

please help me :(

推荐答案


这篇关于单选按钮列表动态事件不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 01:40