Keywords (separated by ,) for this portal

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

Syntax

C#
[XmlElementAttribute("keywords")]
public string KeyWords { get; set; }
Visual Basic
<XmlElementAttribute("keywords")> 
Public Property KeyWords As String
	Get
	Set

Field Value

Keywords seperated by ,

Return Value

Keywords for this portal

Remarks

Examples

This show the usage of the KeyWords property
 Copy imageCopy Code
Dim objPortalController As New PortalController
Dim objPortal As PortalInfo = objPortalController.GetPortal(PortalID)
     txtPortalName.Text = objPortal.PortalName
     txtDescription.Text = objPortal.Description
     txtKeyWords.Text = objPortal.KeyWords

See Also