在母版页和内容页中正确使用表单

发布于 2024-08-06 06:18:26 字数 400 浏览 2 评论 0原文

我目前正在尝试使我现有的 ASP.NET WebForms 应用程序使用 Site.Master 模板。

创建 Site.Master 模板并不是真正的问题,因为它的工作方式就像一个魅力。

问题始于从中派生并将控件放入给定的 ContentPlaceHolder 中。

在运行时,我收到以下错误消息:

Control 'ctr00_Login1' of type 'Login' must be placed inside a form tag with runat=server

这来自我放入 Site.Master 模板中的 LoginControl。

我应该如何处理此错误以及在母版页中使用元素的最佳实践是什么?

预先感谢所有帮助!

I am currently trying to make my existing ASP.NET WebForms application use a Site.Master template.

Creating the Site.Master template wasn't really a problem as it works like a charm.

The problem starts with deriving from it and putting controls in the given ContentPlaceHolder's.

At runtime I receive following error message:

Control 'ctr00_Login1' of type 'Login' must be placed inside a form tag with runat=server

This comes from the LoginControl I put in the Site.Master template.

How should I handle this error and what is the best practise for using elements in Master Pages?

Thanks in advance for all help!

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

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

发布评论

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

评论(1

东风软 2024-08-13 06:18:26

您的母版页上似乎没有表单元素 (

)。请阅读此处了解母版页的工作原理

您应该具有以下内容(来自 MSDN 页面):

<form id="form1" runat="server">
        <table>
            <tr>
                <td><asp:contentplaceholder id="Main" runat="server" /></td>
                <td><asp:contentplaceholder id="Footer" runat="server" /></td>
            </tr>
        </table>
    </form>

要么登录控件不在

标记内。

Looks like you don't have a form element (<form>)on your masterpage. Read here to see how masterpages work.

You should have something along the lines of the following (from the MSDN page):

<form id="form1" runat="server">
        <table>
            <tr>
                <td><asp:contentplaceholder id="Main" runat="server" /></td>
                <td><asp:contentplaceholder id="Footer" runat="server" /></td>
            </tr>
        </table>
    </form>

Either that or the login control is not inside the <form> tags.

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