主题:  怎么用变量来表示控件的id,从而进行调用

swordman666666

职务:普通成员
等级:1
金币:0.0
发贴:94
#12006/9/19 10:59:18
{
string show;
for (int i=1; i < 10; i++)
{
string id="rbl"+i;                
if (this.id.SelectedItem.Text=="1"            
Response.Write(id);
.............
}
错误提示:不包含对id的定义
注:我建了几十个RadioButtonList,id为rbt1.........

编辑历史:[此帖最近一次被 swordman666666 编辑过(编辑时间:2006-09-19 11:04:30)]


三仙半

职务:普通成员
等级:1
金币:0.0
发贴:241
#22006/9/25 10:45:28
id好象不应该用来做变量名吧?


闭起眼睛看人生

缺缺

职务:管理员
等级:8
金币:41.0
发贴:9620
#32006/9/25 12:22:24
string id="rbl"+i.toString();
RadioButtonList rb = (RadioButtonList)Page.FindControl(id);