显示特定模块——dotnetnuke
我正在建设一个网站 我的页面上显示了三个模块。我的页面左侧窗格中有 3 个链接 我有 3 个链接。
我想将这些链接中的每一个都指向每个模块。单击链接时,我只想显示该特定模块并隐藏其他模块。
http://localhost/dotnetnuke_community/Directory/tabid/107/Default.aspx 当我使用上面的链接时,它会显示包含所有 3 个模块的整个页面。我尝试使用 ModuleId 显示特定的模块,但这对我不起作用。
有人可以帮我吗? 谢谢
I am building a site
I have three modules displayed on my page. I have 3 links on the left pane of my page I have three links.
I want to point each one of these links to each of those modules. When a link is clicked I want to display only that specific module and hide others.
http://localhost/dotnetnuke_community/Directory/tabid/107/Default.aspx
When I use the above link, it displays the whole page with all the 3 modules. I tried to display the module in specific using ModuleId, but that hasn't worked for me.
Can someone help me with it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你们的模块是如何封装的?
您可以通过 ModuleController.GetModuleBy... 搜索您的模块,然后通过 Response.Redirect(NavigateUrl(... 来访问特定选项卡上的模块。
How are your modules packaged?
You can search for your Modules via the ModuleController.GetModuleBy.... and then Response.Redirect(NavigateUrl(... to get to the Module on a particular Tab.