BlogAdminWebPart Class
Provides a control that displays administrative links for blogs. This class cannot be inherited.
Inheritance Hierarchy
System.Object
System.Web.UI.Control
System.Web.UI.WebControls.WebControl
System.Web.UI.WebControls.Panel
System.Web.UI.WebControls.WebParts.Part
System.Web.UI.WebControls.WebParts.WebPart
Microsoft.SharePoint.WebPartPages.WebPart
Microsoft.SharePoint.WebPartPages.BlogAdminWebPart
Namespace: Microsoft.SharePoint.WebPartPages
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
<AspNetHostingPermissionAttribute(SecurityAction.LinkDemand, Level := AspNetHostingPermissionLevel.Minimal)> _
<SharePointPermissionAttribute(SecurityAction.LinkDemand, ObjectModel := True)> _
Public NotInheritable Class BlogAdminWebPart _
Inherits WebPart
Dim instance As BlogAdminWebPart
[AspNetHostingPermissionAttribute(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
[SharePointPermissionAttribute(SecurityAction.LinkDemand, ObjectModel = true)]
public sealed class BlogAdminWebPart : WebPart
Remarks
The Hidden property cannot be set to true if the Web Part'sIsStandAlone property is set to true. The Visible property cannot be set to false if the Web Part's IsStandAlone property is set to true. If either of these conditions occurs, Microsoft ASP.NET will throw an exception.
Set these properties in the OnLoad event so it is after the viewState has been applied. but before OnPreRender() since OnPreRender() is not called if Visible=false
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.