引用 MasterPage 属性
我有一个包含以下代码的母版页:
public partial class MasterPage : System.Web.UI.MasterPage
{
public SqlConnection cnx;
protected void Page_Load(object sender, EventArgs e)
{
}
}
如何从使用此母版的 aspx.cs
文件中引用公共 SqlConnection
cnx
属性页?
I have a master page with the following code:
public partial class MasterPage : System.Web.UI.MasterPage
{
public SqlConnection cnx;
protected void Page_Load(object sender, EventArgs e)
{
}
}
How do I reference the public SqlConnection
cnx
property from an aspx.cs
file that uses this master page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在您的母版页中:
在内容页面中(首先添加使用,以便您可以引用“MasterPage”类型)
In your master page:
In Content page (first add using so you can reference 'MasterPage' type)
您有几个选择:
Master
属性强制转换为MasterPage
类型,然后从那里继续。<%@ MasterType virtualpath="~/path/to/master.master" %>
,这将强类型化 Master 属性。You have a couple of options:
Master
property to yourMasterPage
type and proceed from there.<%@ MasterType virtualpath="~/path/to/master.master" %>
in your aspx file which will strongly type the Master property.您应该声明一个接口
IMyMasterPage
并将属性放在那里。让您的母版页实现它。然后您可以在您的页面上执行此操作。
You should declare an interface
IMyMasterPage
and put the property there. Allow your master page to implement it.Then you can do this on your page.