How to deploy and debug webparts in sharepoint?
SharePoint
2
Posts
2
Posters
0
Views
1
Watching
-
Send me Best answer
-
Send me Best answer
It depends on which kind of web part you are deploying. There are 3: OOB out of the box, regular, and Silverlight. OOB need no deploy but do need to be setup. Silverlight are easiest because you upload your XAML to a library, load the silverlight web part in the region, then point it at the XAML URL. Regular web parts can be deployed as a solution, feature. Feature will allow you to have a layer of control in feature settings to activate it or deactivate. http://msdn.microsoft.com/en-us/library/cc768621.aspx[^] ;)
Thanks, Dev Jim