本文介绍了将面板文本框的值放入数组列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用了10个包含文本框的面板,如何使用以下代码将值求值到数组中?
TextBox [] txtsol =新的TextBox [10];
Panel [] pnsol =新面板[10];
string [] a =新的string [10];
对于(int i = 1; i< = 10;)
{
a [i] + = pnsol [i] .FindControl(txtsol [i] .ToString());
i ++;
}
?? :)
I Taken 10 panel which contain the text box and How can i retive the value into the array i used the following code?
TextBox[] txtsol = new TextBox[10];
Panel[] pnsol = new Panel[10];
string[] a = new string[10];
for (int i = 1; i <= 10; )
{
a[i] += pnsol[i].FindControl(txtsol[i].ToString());
i++;
}
y? :)
推荐答案
这篇关于将面板文本框的值放入数组列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!