Hi Alex,
Thanks for posting.
As for the HtmlHead's title generation problem, are you using ASP.NET 1.1
or 2.0 for your application currently? If you're using ASP.NET 2.0 page, t
he HtmlHead property of the Page class will always render out the Title
element and so far what I've tried is setting the "Header" property's
Visible property to false which will make the entire <head> section not
rendered. If you can completely put your own control to render the head
section, this will be one possible approach.
Regards,
Steven Cheng
Microsoft Online Support

Signature
Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
Steven Cheng[MSFT] - 23 Feb 2006 11:45 GMT
Well, I've just tested and found that you can manually locate the "Title"
sub control in the Page.Header.Controls collection which is of HtmlTitle
type. Then, just set its Visible to false to prevent it from being rendered.
Hope this helps.
Regards,
Steven Cheng
Microsoft Online Support

Signature
Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
Alexander Walker - 25 Feb 2006 01:34 GMT
Thanks Steven, thats a great help
Steven Cheng[MSFT] - 27 Feb 2006 01:26 GMT
You're welcome Alex,
Regards,
Steven Cheng
Microsoft Online Support

Signature
Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)