使用 umbraco 添加类文件

发布于 2024-11-15 10:28:18 字数 625 浏览 0 评论 0原文

我有一个名为 test.ascx 的登录页面,还有一个 test.ascx.cs。在 Web 配置中我设置了一个数据库。我在连接到数据库时遇到问题。我将所有面向连接的代码写入名为 test.cs 的类文件中.如何在 umbraco 中添加此类文件。

ascx 代码是

<div style="border:solid 1px red;margin:50px 0px 0px 400px;width:275px; height: 98px;
text-align:center;">
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><br />
<asp:TextBox ID="txtpass" runat="server"></asp:TextBox><br />
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" /><br />
<asp:Label ID="lblmsg" runat="server"></asp:Label>

</div>

i have a login page named test.ascx and also a test.ascx.cs.in the web config i set a database.i have problem when conneting to database.i write all the connetion oriented codes in a class file named test.cs.how can i add this class file in umbraco.

ascx code is

<div style="border:solid 1px red;margin:50px 0px 0px 400px;width:275px; height: 98px;
text-align:center;">
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><br />
<asp:TextBox ID="txtpass" runat="server"></asp:TextBox><br />
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" /><br />
<asp:Label ID="lblmsg" runat="server"></asp:Label>

</div>

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

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

发布评论

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

评论(1

提笔书几行 2024-11-22 10:28:18

您可以使用宏将用户控件添加到 umbraco 中。为此,您必须创建一个 Web 项目并将其 dll 添加到您的 umbraco bin 文件夹中。如果您有类文件,那么通过添加此 dll,您也可以使用该类。

您必须将 ascx 文件添加到用户控件文件夹中,并且必须使用此用户控件创建宏。

请检查 链接

you can add a usercontrol into umbraco by using macro. For this you have to create a web project and have to add its dll to your umbraco bin folder. If you have class files then by adding this dll you can use that class also.

you have to add the ascx files into usercontrol folder and have to create a macro using this usercontrol.

Please check the link

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