Number of portal pages allowed in the portal. 0 means not limited

Namespace: DotNetNuke.Entities.Portals
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
[XmlElementAttribute("pagequota")]
public int PageQuota { get; set; }
Visual Basic
<XmlElementAttribute("pagequota")> 
Public Property PageQuota As Integer
	Get
	Set

Field Value

Number of portal pages allowed

Return Value

Number of portal pages allowed

Remarks

Examples

This show the Portal PageQuotausage
 Copy imageCopy Code
If Not Null.IsNull(objPortal.ExpiryDate) Then
    txtExpiryDate.Text = objPortal.ExpiryDate.ToShortDateString
End If
txtHostFee.Text = objPortal.HostFee.ToString
txtHostSpace.Text = objPortal.HostSpace.ToString
txtPageQuota.Text = objPortal.PageQuota.ToString
txtUserQuota.Text = objPortal.UserQuota.ToString

See Also