asp.net中的Webparts?

时间:2009-10-19 03:58:49

标签: asp.net web-parts

asp.net中的webparts是什么? webparts上的一个简单示例。提前谢谢你。

2 个答案:

答案 0 :(得分:2)

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

来自ASP.NET Web Parts Overview

  

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

门户网站的示例包括iGoogleMy Yahoo!Windows Live Personalized Experience

琐碎的例子

<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

资源

答案 1 :(得分:0)

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部件是浏览器内存消费者:)