1

我正在开发一个 ASP .net 项目。我正在尝试使用以下代码在 Control 对象中加载用户控件,并尝试将参数传递给该控件。在调试模式下,我在该行收到一条错误消息The file '/mainScreen.ascx?matchID=2' does not exist.。如果我删除参数,那么它可以正常工作。谁能帮我传递这些参数?有什么建议么?

    Control CurrentControl = Page.LoadControl("mainScreen.ascx?matchID=2");
4

1 回答 1

5

您不能通过查询字符串表示法传递参数,因为用户控件只是虚拟路径引用的“构建块”。

您可以做的是创建一个公共属性并在加载控件后为其分配值:

public class mainScreen: UserControl
{
    public int matchID { get; set; }
}

// ...

mainScreen CurrentControl = (mainScreen)Page.LoadControl("mainScreen.ascx");
CurrentControl.matchID = 2;

您现在可以使用matchID内部用户控件,如下所示:

private void Page_Load(object sender, EventArgs e)
{
    int id = this.matchID;

    // Load control data
}

请注意,只有将控件添加到页面树中时,该控件才会参与页面生命周期:

Page.Controls.Add(CurrentControl); // Now the "Page_Load" method will be called

希望这可以帮助。

于 2012-08-07T11:38:53.960 回答