masterpage title

  • Thread starter Thread starter John
  • Start date Start date
J

John

I'm using a master page for my web site and I want to show the account name
in the master page 'title' section. How can I show my drop down selection in
my master page 'title section'?

example:

master page:
Scott's Account
 
Even though you are using master pages you can still access the page's
title from any child page.

protected void Page_Load(object sender, EventArgs e)
{
Page.Title = "title here...";
}
 
the title belongs to the content page not the master page
in your page load
me.title=me.ddl.selectedindex.value
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top