Number of portal pages allowed in the portal. 0 means not limited
Namespace: DotNetNuke.Entities.PortalsAssembly: 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 allowedReturn Value
Number of portal pages allowed
Remarks
Examples
This show the Portal PageQuotausage
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 | |