如何获取添加到动态表的动态文本框的文本,该动态文本框被添加到表单上的面板中,该表单是否具有母版页?
答案 0 :(得分:0)
大概是你在谈论ASP.NET?您是否尝试使用Javascript获取代码隐藏或客户端的价值?
如果是服务器端,并且在页面上声明了<asp:Panel>
,则可以执行...
foreach(Control c in myPanel.Controls)
{
if(c.GetType() == typeof(TextBox))
{
TextBox tb = c as TextBox;
if(tb.ID == "The ID Your Looking For")
{
//Do stuff with tb.Text;
}
}
}