web|动态
我有一个页面,动态装载两个控件,txtQuestion1 和txtQuestion2,
其中的 1, 2是由一个数组中的值来确定的:装载方法如下:
for (int i=0;i<=arrLang.GetUpperBound(0);i++)
{
TextBox myTextBox1 = new TextBox();
myTextBox1.ID = "txtQuestion" + arrLang[i].ToString();
PlaceHolder1.Controls.Add(myTextBox1);
}
现在我要取得用户在这两个动态装载的文本框中输入的内容,要求也用数组来实现。如何做?
我估计需要用到类似于 eval() 这样功能的东东,但不知具体方法。
答案:
((TextBox)FaqPlaceHolder.FindControl("txtQuestion"+ arrLang[i].ToString())).Text;
时间: 2024-12-13 05:39:52