How to change the Page Title in ASP.Net 1.1 ?
- by Andreas Grech
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 ?