SharePoint 2010 Developing Custom Web Part


/ Published in: C#
Save to your folder(s)

Great tutorial for getting started with SharePoint custom web parts


Copy this code and paste it in your HTML
  1. //Quick Reference for Web part properties
  2. [WebBrowsable(true),
  3. Category("Miscellaneous"),
  4. Personalizable(PersonalizationScope.Shared),
  5. WebDisplayName("Enter some text")]
  6. public string CustomTextProp { get; set; }

URL: http://blog.concurrency.com/sharepoint/create-a-custom-web-part-for-sharepoint-2010/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.