动态控制值

发布于 2024-07-19 03:36:54 字数 52 浏览 0 评论 0原文

如何获取添加到动态表中的动态文本框的文本,该动态表添加到表单上的面板中,该表单具有母版页?

How to get the text of the dynamical textbox which is added to the dynamical table ,which is added to the panel on the form, that form is having the masterpage?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仅冇旳回忆 2024-07-26 03:36:54

想必您正在谈论 ASP.NET? 您是否尝试使用 Javascript 获取后台代码或客户端中的值?

如果它的服务器端,并且您的 在页面上声明,您可以这样做...

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;
        }
    }
}

Presumably your talking about ASP.NET? Are you trying to get the value in the code behind or client side using Javascript?

If its server side, and your <asp:Panel> is declared on the page, you could do...

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;
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文