B
bh
I'm getting strange behavior, while trying to edit page titles from content
pages.
On the master page, I have a label control, named lblTitle, between the
<title></title> tags
On the content page, I have a page-level variable declared: Dim lblTitle as
Label
On Load, I have:
lblTitle = CType(Master.FindControl("lblTitle"), Label)
lblTitle.Text = "My page title"
When I run application, the title bar of the content page shows:
<span id="ctl00_lblTitle">My page title</span>
How can I have customized titles for each page, without the <span> tags
showing? I'm not even sure where those span tags are generated. Thanks in
advance.
bh
pages.
On the master page, I have a label control, named lblTitle, between the
<title></title> tags
On the content page, I have a page-level variable declared: Dim lblTitle as
Label
On Load, I have:
lblTitle = CType(Master.FindControl("lblTitle"), Label)
lblTitle.Text = "My page title"
When I run application, the title bar of the content page shows:
<span id="ctl00_lblTitle">My page title</span>
How can I have customized titles for each page, without the <span> tags
showing? I'm not even sure where those span tags are generated. Thanks in
advance.
bh