引用 MasterPage 属性

发布于 2024-11-02 18:06:35 字数 306 浏览 1 评论 0原文

我有一个包含以下代码的母版页:

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 技术交流群。

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

发布评论

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

评论(3

夏有森光若流苏 2024-11-09 18:06:35

在您的母版页中:

    public SqlConnection CnxInMasterPage
    {
        get { return this.cnx; }
    }

在内容页面中(首先添加使用,以便您可以引用“MasterPage”类型)

var cnx = ((MasterPage)Master).CnxInMasterPage;

In your master page:

    public SqlConnection CnxInMasterPage
    {
        get { return this.cnx; }
    }

In Content page (first add using so you can reference 'MasterPage' type)

var cnx = ((MasterPage)Master).CnxInMasterPage;
如梦 2024-11-09 18:06:35

您有几个选择:

  1. Master 属性强制转换为 MasterPage 类型,然后从那里继续。
  2. 在您的 aspx 文件中包含 <%@ MasterType virtualpath="~/path/to/master.master" %> ,这将强类型化 Master 属性。

You have a couple of options:

  1. cast the Master property to your MasterPage type and proceed from there.
  2. Include <%@ MasterType virtualpath="~/path/to/master.master" %> in your aspx file which will strongly type the Master property.
吐个泡泡 2024-11-09 18:06:35

您应该声明一个接口 IMyMasterPage 并将属性放在那里。让您的母版页实现它。

然后您可以在您的页面上执行此操作。

var myMasterPage = this.MasterPage as 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.

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