| Author: Kumar 05 Sep 2008 | Member Level: Silver | Rating: Points: 3 |
Smartpart is a wrapper, it loads another control. so basically it is a web part, it host ascx controls inside it
|
| Author: Arun Kumar 06 Sep 2008 | Member Level: Gold | Rating: Points: 2 |
So both are similar, Right? But are smart parts are included within sharepoint like webparts? Are it belongs to some 3rd party component?
|
| Author: Kumar 29 Sep 2008 | Member Level: Silver | Rating: Points: 2 |
Not exactly a 3rd party component. Need to register the MS patterns and practices dll's, which has many built-in controls. using this you can create smartparts. more details on P&P: http://msdn.microsoft.com/en-us/practices/bb190357.aspx
|
| Author: Santhi 07 Nov 2008 | Member Level: Gold | Rating: Points: 5 |
SmartPart can give user control access to the SharePoint object model and it is a generic webpart that can contain an ASP.NET user control. Web part is some sort of fundamental building block in a SharePoint portal. In Sharepoint site Components like Calendar, Announcements, and Links are called Web Parts, specifically designed to provide personalized and customizable windows of information to users.
|
| Author: gowthami chowdary 20 Nov 2008 | Member Level: Gold | Rating: Points: 6 |
you can create a Web User Control (ASCX) with the Visual Studio Designer, that uses the ASP.NET AJAX extensions and run that user control as a SharePoint web part. At this point in time, it's still a beta version, you can get it from the GotDotNet workspace (releases section). How do you get started? First of all you need to download and install the ASP.NET AJAX Extensions. Next you need to extend your SharePoint site with these extensions, check Mike's post for detailed instructions. You only need to change the web.config, you don't need to add the ScriptManager to the master page! Now you can install the SmartPart. Web Part is to be used for displaying the hierarchical location on a Windows SharePoint Services 2003 site collection. This breadcrumb trail will continue all the way down to the site that the user is currently on.
|