ASP.NET MVC 中的 Web 部件

发布于 2024-10-25 23:54:32 字数 685 浏览 1 评论 0原文

这可能是最琐碎的问题,但我再次提出。我计划在个人项目上开始使用 ASP.NET MVC,如果它支持 Web 部件或存在任何其他替代方案,我会感到震惊。我打算有一个类似于 igoogle 或 pageflakes 的起始页,但我的初步研究指出,由于 ASP.NET MVC 中没有 ViewState 或 Postback 概念,因此不可能实现 Web 部件。

如果是这种情况,是否有任何资源可以帮助构建我希望使用 MVC 的起始页。

PS:我在初步研究中找到的链接

  1. asp.net MVC 快速提示 - webparts框架
  2. 使用 jquery 构建小部件 ASP.NET MVC

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

  1. Quick tips on asp.net MVC -
    webparts framework
  2. Building widgets using jquery in
    asp.net MVC

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一个人练习一个人 2024-11-01 23:54:32

您应该使用 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>.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文