Override the Render property, like this:
protected override void Render(HtmlTextWriter w)
{
W.Write(--your title and metatags--);
Base.Render(w);
}
-----Original Message-----
From: Robert Sindall [mailto:rsindall@z...]
Sent: 11. november 2002 09:20
To: ASPX_Professional
Subject: [aspx_professional] extending: system.web.ui.page
Hi
I'm extending the: system.web.ui.page class
I would like it to automatically set these properties:
Page Title
Meta Description
Meta Keywords
SiteAlign
SiteWidth
but, these isn't any obvious members or properties to do this...
how else could i do this through the system.web.ui.page class.
Thanks