ASP.net MVC 中的多页控制
我正在使用 ASP.NET MVC 框架。 在我的应用程序中,我想要有一个母版页和多个子页面。 如果加载任何一页,则应加载所有子页面。 假设我有 4 个子页面,我想在母版页中添加链接 1 2 3 .. 。 如果我单击任何一个链接,相关页面必须立即可用,而无需向服务器请求页面。
任何人都可以帮忙或告诉什么是最好的方法吗?
I am working with asp.net mvc framework.
In my application I want to have a master page and multiple child pages.
All the child pages should load if any one page gets loaded.
Say i have 4 child pages i want to have link 1 2 3 .. in the master page.
If i click on any one link the related page must be immediately available with out requesting a page to the server.
Can any one help or tell what is the best way to do it ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
加载默认视图,然后在用户阅读第一个页面时使用 AJAX 引入其余页面。这将为您所做的事情提供最佳的性能折衷。一开始加载所有 X 页会非常慢。
Load the default view then use AJAX to bring in the rest of the pages while the user is reading the first one. That's going to get you the best performace compromise for what you're trying to do. Loading all X pages to begin with would be very slow.
您可以预先加载所有内容,而不用 javascript 显示它吗?
You can load everything upfront with and do not show it with javascript?