母版页中用户控件中的菜单单击无法从内容页中正常工作
我在母版页(mainmaster.master)的用户控件(menu.ascx)中有一个菜单。该菜单是动态填充的。
现在我们有一个使用 mainmaster.master 的内容页面有 iframe。现在我想单击母版页中的菜单(依次在用户控制中),即产品 并想在该 iframe 中打开 products.aspx。
I had a menu in user control (menu.ascx) in master page (mainmaster.master). That menu is populated dynamically.
Now we have a content page that uses mainmaster.master has iframe. Now I want to click on menu in masterpage (which in turn is in user control) i.e products
and want to open products.aspx in that iframe.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的用户控件、母版页和内容页都呈现为单个 HTML 页面,因此您可以使用客户端脚本来设置
iframe
的源。类似的东西:
jQuery
HTML
工作演示
这是 jsfiddle.net 上的一个小演示。
Your user control, master page and content page all get rendered to a single HTML page, so you could use client-side script to set the source of the
iframe
.Something along the lines of this:
jQuery
HTML
Working Demo
Here's a little demo on jsfiddle.net.