ASP.NET MVC 中的 Web 部件
这可能是最琐碎的问题,但我再次提出。我计划在个人项目上开始使用 ASP.NET MVC,如果它支持 Web 部件或存在任何其他替代方案,我会感到震惊。我打算有一个类似于 igoogle 或 pageflakes 的起始页,但我的初步研究指出,由于 ASP.NET MVC 中没有 ViewState 或 Postback 概念,因此不可能实现 Web 部件。
如果是这种情况,是否有任何资源可以帮助构建我希望使用 MVC 的起始页。
PS:我在初步研究中找到的链接
This might be the most trivial question asked, but I raise it again. Am planning to get started with asp.net MVC on a personal project and here am struck if it supports webparts or any other alternative to it is present. I intend to have a start page similar to igoogle or pageflakes, but my initial research pointed out that as there's no ViewState nor Postback concepts in ASP.NET MVC implementing web parts is not possible.
If that is the case, are there any resources which helps in building a start page as the one i wish to using MVC.
PS: Links I found in the initial research
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用 AJAX 创建可以与服务器交互而无需重新加载页面的小部件。
这样,小部件就不会互相影响。
jQuery 在这里会很有用。
或者,您可以将每个小部件放入其自己的
中。
You should use AJAX to create widgets that can interact with the server without reloading the page.
This way, the widgets will not affect each-other.
jQuery will be useful here.
Alternatively, you could put each widget in its own
<iframe>
.