如何从母版页上的用户控件访问母版页中定义的数据集?

How to access dataset defined in master page from user control on master page?

我有一个母版页,其中包含在 VB 代码中定义的数据集。

Public Property Inventory As DataSet = New DataSet

我在 Page_Init 中填充数据。

我在同一个母版页上有一个用户控件。如何从 Page_Load 中的用户控件后面的代码 (myusercontrol.ascx) 访问数据集?我对我的内容页面上的用户控件执行此操作没问题,但当控件位于母版页上时我无法让它工作。

通常,我只是将其引用为 Master.Inventory。当控件位于内容页上时,这会起作用,但是当控件位于母版页上时,我该怎么做呢?我尝试了 Parent.Page.Master.InventoryPage.Master.Inventory,甚至只是 Inventory。我得到“库存未定义”或“库存不是...的成员”。

在用户控件中,我只是想做类似 Dim i As DataSet = [reference goes here] 的事情。

首先,在您的母版页中创建一个 public 属性。在这种情况下 myDataSet

public partial class Site : System.Web.UI.MasterPage
{
    public DataTable myDataSet { get; set; }

    protected void Page_Load(object sender, EventArgs e)
    {
        //add some dummy data to the dataset
        myDataSet = new DataTable();
        myDataSet.Columns.Add("ID", typeof(int));
        myDataSet.Columns.Add("COUNTRY", typeof(string));

        myDataSet.Rows.Add(0, "Netherlands");
        myDataSet.Rows.Add(1, "Japan");
        myDataSet.Rows.Add(2, "Country");
    }
}

然后在Control的Page_Load中引用Master,然后你就可以访问那个属性。

public partial class WebUserControl1 : System.Web.UI.UserControl
{
    public Site master;

    protected void Page_Load(object sender, EventArgs e)
    {
        //get the current master page
        master = (Site)Page.Master;

        //access the public property in the master
        Label1.Text = master.myDataSet.Rows[0][1].ToString();
    }
}

VB

我使用了 VB 的代码翻译器,所以它可能不完全正确。但是你会明白的。

Public Class Site
    Inherits System.Web.UI.MasterPage
    
    Public Property myDataSet As DataTable
        Get
        End Get
        Set
        End Set
    End Property
    
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
        'add some dummy data to the dataset
        Me.myDataSet = New DataTable
        Me.myDataSet.Columns.Add("ID", GetType(System.Int32))
        Me.myDataSet.Columns.Add("COUNTRY", GetType(System.String))
        Me.myDataSet.Rows.Add(0, "Netherlands")
        Me.myDataSet.Rows.Add(1, "Japan")
        Me.myDataSet.Rows.Add(2, "Country")
    End Sub
End Class

控制

Public Class WebUserControl1
    Inherits System.Web.UI.UserControl
    
    Public master As Site
    
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
        'get the current master page
        Me.master = CType(Page.Master,Site)
        'access the public property in the master
        Label1.Text = Me.master.myDataSet.Rows(0)(1).ToString
    End Sub
End Class

我最终选择了不同的路线。我直接从母版页做了所有事情。

我在我的用户控件中放置了一个数据绑定控件(我的恰好是 DropDownList)。

然后,我在用户控件myusercontrol.ascx.vb.

中添加了一个DataBind成员
Public Class MyUserControl
    Inherits System.Web.UI.UserControl

    Public Property DataSource As DataTable
        Get
            Return MyDataBoundControl.DataSource
        End Get
        Set(ByVal _source As DataTable)
            MyDataBoundControl.DataSource = _source
        End Set
    End Property

    Public Sub DataBind
        MyDataBoundControl.DataBind()
    End Sub
End Class

然后在主页上site.master:

<MyPrefix:MyUserControl id="MyUserControl" runat="server" />

并且在母版页代码后面 site.master.vb:

Dim DS As DataTable
[do some stuff to define and populate DS]

MyUserControl.DataSource = DS
MyUserControl.DataBind()