我正在开发一个ASP .net项目。我试图使用以下代码在Control对象中加载用户控件,我试图将参数传递给该控件。在调试模式下,我在该行上收到错误The file '/mainScreen.ascx?matchID=2' does not exist.
。如果我删除参数然后它可以正常工作。任何人都可以帮我传递这些参数吗?有什么建议吗?
Control CurrentControl = Page.LoadControl("mainScreen.ascx?matchID=2");
答案 0 :(得分: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
希望这有帮助。