Dynamicweb 8 Documentation
Url Property (Group.MetaData)
Example 

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

Property Value

URL.
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