title
-
hello how to add form name. where our project name display like Project name Microsoft internet exlorer. ex. chanakya Microsoft internet exlorer in that line how to add form name. thks
Gayatri
-
hello how to add form name. where our project name display like Project name Microsoft internet exlorer. ex. chanakya Microsoft internet exlorer in that line how to add form name. thks
Gayatri
niki_nilu wrote:
in that line how to add form name.
You can set it dynamically by using Page Title Property
this.Page.Title="My Page Title Here";
please don't forget to vote on the post that helped you.
-
hello how to add form name. where our project name display like Project name Microsoft internet exlorer. ex. chanakya Microsoft internet exlorer in that line how to add form name. thks
Gayatri
You will have to set the title programmatically using code. Or you can create a base page and customize it to format the title as required and provide this functionality to all the pages. You may want to check my blog on this topic asp.net pages and proper titles HTH
Nirandas, a developer from India. http://www.nirandas.com
-
You will have to set the title programmatically using code. Or you can create a base page and customize it to format the title as required and provide this functionality to all the pages. You may want to check my blog on this topic asp.net pages and proper titles HTH
Nirandas, a developer from India. http://www.nirandas.com
hello sir i am using master page. then my aspx page is in contentplaceholder. then how to write title. my code this code i write in score.aspx.cs and i used master page for this page. string strMasterPageName = Master.MasterPageFile; this.Master.Page.Title = "Score"; thks
Gayatri
-
hello sir i am using master page. then my aspx page is in contentplaceholder. then how to write title. my code this code i write in score.aspx.cs and i used master page for this page. string strMasterPageName = Master.MasterPageFile; this.Master.Page.Title = "Score"; thks
Gayatri
Hi Gayatri, Why can't you use just
this.Title = "Score";
There is no need to reference the master page to set the title. Let me know if I didn't get you.
Nirandas, a developer from India. http://www.nirandas.com