asp.net 中的 Web 部件?

发布于 2024-08-08 18:25:02 字数 49 浏览 4 评论 0原文

ASP.NET 中的 Web 部件是什么? Web 部件上的一个简单示例。先感谢您。

what is webparts in asp.net? a simple example on webparts. thank you in advance.

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

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

发布评论

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

评论(2

梦在深巷 2024-08-15 18:25:02

Web 部件允许通过拖放最终用户自定义来构建类似门户的动态 UI。

来自 ASP.NET Web 部件概述

ASP.NET Web 部件是一组用于创建网站的集成控件,使最终用户能够直接从浏览器修改网页的内容、外观和行为。

门户网站的示例包括 iGoogle我的 Yahoo!Windows Live 个性化体验

简单示例

<asp:WebPartManager ID="WebPartManager1" runat="server">
</asp:WebPartManager>

<asp:WebPartZone ID="WebPartZone1" runat="server">
  <ZoneTemplate>
    <asp:Label ID="Label1" runat="server" Text="Hello world!" Title="Hello"  />
  </ZoneTemplate>
</asp:WebPartZone>

<asp:WebPartZone ID="WebPartZone2" runat="server">
  <ZoneTemplate>
    <asp:Calendar ID="Calendar1" runat="server" Title="Calendar" />
  </ZoneTemplate>
</asp:WebPartZone>

screenshot

资源

Web Parts allow building dynamic portal-like UI with drag/drop end-user customization.

From ASP.NET Web Parts Overview:

ASP.NET Web Parts is an integrated set of controls for creating Web sites that enable end users to modify the content, appearance, and behavior of Web pages directly from a browser.

Examples of web portals are iGoogle, My Yahoo!, and Windows Live Personalized Experience.

Trivial example

<asp:WebPartManager ID="WebPartManager1" runat="server">
</asp:WebPartManager>

<asp:WebPartZone ID="WebPartZone1" runat="server">
  <ZoneTemplate>
    <asp:Label ID="Label1" runat="server" Text="Hello world!" Title="Hello"  />
  </ZoneTemplate>
</asp:WebPartZone>

<asp:WebPartZone ID="WebPartZone2" runat="server">
  <ZoneTemplate>
    <asp:Calendar ID="Calendar1" runat="server" Title="Calendar" />
  </ZoneTemplate>
</asp:WebPartZone>

screenshot

Resources

ι不睡觉的鱼゛ 2024-08-15 18:25:02

Web 部件:Web 部件是内置于 ASP.NET 2.0 中的框架,用于构建高度可定制的门户样式页面。用户可以在浏览器中为每个用户进行自定义用户设置。例如浏览器中每个控件的最小化、最大化、关闭等。

http: //www.csharpcorner.com/UploadFile/a_anajwala/Building_WebParts.mht08042005042119AM/Building_WebParts.mht.aspx?ArticleID=62ffd1b4-98fa-41cc-9512-9b0637e91eed

http://ondotnet.com/pub/a/dotnet/2005/01/10/liberty.html

注意:Web 部件会消耗浏览器内存:)

Web parts : Web Parts is a framework built into ASP.NET 2.0 for building highly customizable portal-style pages.?User can do customized user settings in browser for each user.Like minimize ,maximize ,close etc for each control in browser .

http://www.csharpcorner.com/UploadFile/a_anajwala/Building_WebParts.mht08042005042119AM/Building_WebParts.mht.aspx?ArticleID=62ffd1b4-98fa-41cc-9512-9b0637e91eed

http://ondotnet.com/pub/a/dotnet/2005/01/10/liberty.html

Note : Web parts is a browser memory eater :)

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