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