.NET
sharept.txt
Associated article: SharePoint Web Part Development
Tags: .NET
Published source code in the article by Seth Bates in which he examines Microsoft's Windows SharePoint Services, a web-based team collaboration and document management platform. Also see SHAREPT.ZIP.
SharePoint Web Part Development
by Seth Bates
Example 1:
Protected Overrides Sub RenderWebPart(ByVal output As
System.Web.UI.HtmlTextWriter)
output.Write("This is my first web part.")
End Sub
Example 2:
Protected WithEvents btnSearch As Button
Protected Overrides Sub ...


