Introduction to Web Parts in ASP.NET 2.0
Summary Webparts provide us with an easy way to customize our website on runtime. Aside from their availability in Sharepoint portal server, webparts were introduced in asp.net 2.0. I have tried to cover all the common aspects of webparts in this article, like using different types of webparts and using a custom database. Introduction It would not be wrong to say that web parts are going to be the future of web based management systems. Web parts give us the option to drag and drop objects on a page, change titles, border style, and properties of objects at runtime. Before the introduction of web parts it used to be a hectic task because we had to write a lot of java script and to save the state of contents in a database. There are two basic things in web parts: Web part manager. Web part zones. Web Part Manager Web part manager is a manager for web parts behind the scenes. We normally don't do a lot of things with the web part manager either in code or ...