使用 umbraco 添加类文件
我有一个名为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用宏将用户控件添加到 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