sábado, 17 de abril de 2010

Sharepont 2010 Le nouveaux

http://blogs.dotnet-france.com/juliend/post/SharePoint2010-Introduction-a-SP2010-pour-developpeur.aspx

viernes, 2 de abril de 2010

A Complete Web Part research in sharepoint 2010

Excellent WebPart Tutorial (even if it miss what I need :-)



Bad joke of the day - Microsoft is still using the wss class for connecting the out-of-the box web part !


Demo webpart and toolpart

Migrate WebPart to Sharepoint 2010

Using Visual Studio 2010

- Create a new Sharepoint Project
- In this project include a New webpart
- Note the namespace and the public class used in this new webpart
ie:
namespace Target2010c.Target2010
{
[ToolboxItemAttribute(false)]
public class Target2010 : WebPart
{
protected override void CreateChildControls()
{
}
}
}

- Using a editor edit your original code and replace your namespace and public class by the newly created.

- Paste your edited code in the new webpart

- Et voila

Worked for me