How to change the Page Title in ASP.Net 1.1 ?

Posted by Andreas Grech on Stack Overflow See other posts from Stack Overflow or by Andreas Grech
Published on 2009-07-30T12:32:58Z Indexed on 2010/04/29 18:47 UTC
Read the original article Hit count: 281

Filed under:
|
|

With ASP.Net 2.0 you can use the Title property to change the page title :

Page.Title = "New Title";

But since in ASP.Net 1.1 there isn't a Title property in the Page class, how can I change the page's title from the code-behind ?

© Stack Overflow or respective owner

Related posts about asp.net-1.1

Related posts about page-title