Hello Ian Dunkerly#,
use the method call from title, like
<title><%= GetTitle() %></title>
where in your method return the string
---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog:
http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
I> I am using .Net 2 SP1 and appear to have a problem with rendering
I> titles, when the title contains both text and a controls only the
I> controls are rendered.
I>
I> This can be reproduced by creating a page with the following:
I>
I> <%@ Page Language="C#" AutoEventWireup="true" %>
I>
I> <html>
I> <head runat="server">
I> <title>Test<asp:Localize ID="Localize1" runat="server"
I> Text="Hello"
I> /></title>
I> </head>
I> <body>
I> <form id="form1" runat="server">
I> <div>
I> </div>
I> </form>
I> </body>
I> </html>
I>
I> I would expect that TestHello would be rendered, but only Hello is
I> rendered.
I>
I> Is this a known bug, is there a hotfix?
I>
I> Thanks
I>
I> Ian
I>