Dynamicweb 8 Documentation
Title Property (Group.MetaData)
Example 

Gets or sets the title.
Syntax
'Declaration
 
Public Property Title As String
public string Title {get; set;}

Property Value

The title.
Example
Class MetaInformation
{
    protected System.Web.UI.WebControls.TextBox MetaTitle;
    protected System.Web.UI.WebControls.TextBox MetaKeywords;
    protected System.Web.UI.WebControls.TextBox MetaDescr;
    protected System.Web.UI.WebControls.TextBox MetaUrl;
    private Group group;
 
    public void GetMetaData()
    {
        group = new Group();
        group.Meta = new Group.MetaData();
        group.Meta.Title = MetaTitle.Text.Trim();
        group.Meta.Keywords = MetaKeywords.Text.Trim();
        group.Meta.Description = MetaDescr.Text.Trim();
        group.Meta.Url = MetaUrl.Text.Trim();
    }
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Group.MetaData Class
Group.MetaData Members

Send Feedback