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: 361
        
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