asp.net中的webparts是什么? webparts上的一个简单示例。提前谢谢你。
答案 0 :(得分:2)
Web部件允许通过拖放最终用户自定义构建类似动态门户的UI。
ASP.NET Web部件是一组集成的控件,用于创建网站,使最终用户可以直接从浏览器修改网页的内容,外观和行为。
门户网站的示例包括iGoogle,My 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>
答案 1 :(得分:0)
Web部件:Web部件是ASP.NET 2.0中内置的一个框架,用于构建高度可定制的门户网站样式的页面。用户可以在浏览器中为每个用户进行自定义用户设置。对每个控件进行最小化,最大化,关闭等浏览器。
http://ondotnet.com/pub/a/dotnet/2005/01/10/liberty.html
注意:Web部件是浏览器内存消费者:)