是否可以像 Winforms 中那样将 WebUserControl.ascx 加载到默认页面中的面板
我有一个默认页面,即default.aspx,其中我将有面板。我将有另外 2 个表单,即 Webusercontrol1.ascx 和 Webusercontrol2.ascx 我将使用一些控件设计页面,现在是否可以将此页面加载到默认页面上的面板中,就像我们在 WINFORMS 中所做的那样。
I am having a default page namely default.aspx in this i will have panel. And i will have 2 other forms namely Webusercontrol1.ascx and Webusercontrol2.ascx i will design the page with some controls now is it possible to load this page in to the panel which was on default page like as we did in WINFORMS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Web 用户控件 (.ascx) 绝对可以加载到面板中。
Web 表单 (.aspx) 不能。
您是否尝试动态将用户控件加载到面板中?如果是这样,您也可以这样做,但您必须在每次回发时都这样做。
要从后面的代码将控件添加到面板,只需创建它,然后将其添加到面板的 Controls 集合中。请记住,必须在每个后续回发中重复此操作。
请确保在您的 aspx 文件中注册您的用户控件
Web user controls (.ascx) can definitely be loaded into a panel.
Web forms (.aspx) cannot.
Are you trying to dynamically load your user controls into a panel? If so, you can do that too, but you have to do it on every postback.
To add a control to your panel from the code behind, simply create it, and then add it to the Controls collection of the panel. Just remember, this has to be repeated on every subsequent postback.
Just be sure to register your user control in your aspx file
我想这就是我需要的
I think this is the one i required
在ascx中:
在ascx.cs中
In ascx:
In ascx.cs