Code for How to change the Page Title in ASP.Net 1.1 and C# in Asp.net
// We need this name space to use HtmlGenericControlusing System.Web.UI.HtmlControls;
namespace TestWebApp
{
publicclass WebForm1 : System.Web.UI.Page
{
// Variable declaration and instantiationprotected HtmlGenericControl PageTitle = new HtmlGenericControl();
privatevoid Page_Load(object sender, System.EventArgs e)
{
// Set new page title
PageTitle.InnerText = "New Page Title";
}
}
}