从其 InsertItemTemplate 子按钮获取 FormView

发布于 2024-11-08 20:59:23 字数 125 浏览 3 评论 0原文

我的网页上有一个 FormView,当在 FormView 的 InsertItemTemplate 内按下“提交”按钮时,我试图获取 FormView。我该怎么办呢。我的事件发送者是按钮,但不是 FormView。有什么财产可以用吗?

I have a FormView on my WebPage and I am trying to get the FormView when my Submit button is pressed inside the FormView's InsertItemTemplate. How can I do that. My sender of the event is the button but not the FormView. Is there any property for it?

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

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

发布评论

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

评论(1

荆棘i 2024-11-15 20:59:23

您应该能够通过 ButtonClick 中的 ID 直接访问 FV。

protected void Button1_Click(object sender, EventArgs e)
{
        string id = FormView1.ID;
        //Here is an explicit way to do get FV
        //FormView fv = (FormView)((Button)sender).NamingContainer;
}

You should be able to access FV directly via it's ID in the ButtonClick.

protected void Button1_Click(object sender, EventArgs e)
{
        string id = FormView1.ID;
        //Here is an explicit way to do get FV
        //FormView fv = (FormView)((Button)sender).NamingContainer;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文