如何在给定路径的情况下获取用户控件的类型
有没有办法将用户控件 ~/usercontrols/MyUserControl.ascx 的路径转换为类型,如 typeof(MyUserControl) 中那样?
Is there a way to translate a path to a user control, ~/usercontrols/MyUserControl.ascx, to a type, as in typeof(MyUserControl)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Page 类上使用 LoadControl() 方法:
Use the LoadControl() method on the Page class: