Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx_professional thread: extending: system.web.ui.page


Message #1 by "Robert Sindall" <rsindall@z...> on Mon, 11 Nov 2002 17:20:10 -0000
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


  Return to Index