在 asp.NET 和 ASP.NET 中构建 Outlook 布局的最佳实践telerik radpanelbar 作为页面拱门?
我正在开发企业应用程序,我正在使用 Telerik 控件让生活更轻松;) 我的应用程序的布局在左侧 radpanelbar 用于导航菜单,右侧是内容。
我想让这个导航菜单导航到用户控件(.ascx 文件)而不是页面(.aspx 文件) 导航控件位于母版页中。 我有多种原因进行这种导航:
- 我有很多用户控件,并且不想制作与我一样多的页面 (.aspx)。
- 最重要的是我想让这一切在没有邮包(AJAX)的情况下即时发生。
因此,请任何人告诉我们这样做的最佳实践。
I am working on enterprise apps, I am using telerik controls to make life easier ;)
The layout of my application on the left radpanelbar used for the navigation menu, on the right side is the content.
I want to make this navigation menu to navigate to a usercontrol (.ascx file) instead of a page (.aspx file)
The navigation control is in the master page.
I have multiple reasons to make this kind of navigation:
- I have many user controls, and do not want to make pages (.aspx) as many user controls as I have.
- Which is the most important I want to make this happen on the fly with out post pack (AJAX).
So please could any one tell about the best practice to do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种可能的解决方案是当用户单击面板栏项时通过 AJAX 以编程方式加载导航用户控件。仍然将此用户控件放置在母版页上并从内容页加载它对我来说很奇怪,我个人并不认为这是一个好的体系结构决策。
One possible solution might be to load the navigation user control programmatically via AJAX when the user clicks a panelbar item. Still positioning this user control on the master page and loading it from the content page is quite odd to me and I personally do not approve it as a good architectural decision.