如何取得动态装载的WEB CONTROL的属性值?

发表于:2007-06-30来源:作者:点击数: 标签:
我有一个页面,动态装载两个控件,txtQuestion1 和txtQuestion2, 其中的 1, 2是由一个数组中的值来确定的:装载方法如下: for (int i=0;i=arrLang.GetUpperBound(0);i++) { TextBox myTextBox1 = new TextBox(); myTextBox1.ID = txtQuestion + arrLang[i].T
我有一个页面,动态装载两个控件,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; 

原文转自:http://www.ltesting.net