如何从 main.aspx 页面的代码隐藏访问 usercontrol.ascx 中的字段集?
实际上我正在使用 asp.net 和 c# 开发模板。我的用户控制页面中有一个面板,其中包含 2 个字段集。我想从 main.aspx 页面后面的代码访问这 2 个字段集,这意味着当用户单击 main.aspx 页面上的链接 1 时,面板将刷新并显示字段集 1,当用户单击链接 2 时,面板将刷新并显示字段集,面板将刷新,面板显示 fieldset2。为了部分刷新页面,我正在使用更新面板。你能指导我如何解决这个问题吗? 感谢您的考虑。
actually i'm developing template using asp.net and c#. i have one panel which contain 2 fieldset in my usercontrol page. i wand to access these 2 fieldset from the code behind of the main.aspx page, which means when the user click on the link1 at the main.aspx page the panel will be refresh and shows the fielset1 and when the user click on the link2, the panel will be refresh and panel shows the fieldset2. for the partial refreshing of the page i'm using the updatepanel. could you please guide me how to get ride of this problem.
appreciate your consideration.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
感谢丹尼斯的跟进。我已经解决了这个问题。
我在我的用户控件页面上放置了一个 HiddenField 变量:
然后我从 aspx.cs 页面访问并更改了它:
然后我在 ascx 页面上放置了一个 if 条件来检查 HiddenField 值是什么,并基于我显示的值相关字段集:
我希望它会有所帮助。
谢谢
thanks Denys for following up. i have fix the problem.
i have put one HiddenField variable at my usercontrol page:
then i have accessed and changed it from aspx.cs page:
then i have put a if condition at the ascx page to check what is the HiddenField value and base on the value i show the related fieldset:
i hope it would be helpful.
thanks