Page Title

  • Thread starter Thread starter Matt Tapia
  • Start date Start date
M

Matt Tapia

Does anyone know how change the HTML Page title text without using a
code-behind page?
I would like to do this using front side code between <script> tags.

thanks!
 
Why don't you just change it in the html title tag?

<title>title</title>

or

dim bob = "new title"

<title><%bob%></title>

bill
 
Add the runat =server to the title tag and make it an html generic control.
Then do something like
PageTitle.InnerText = ds.Tables(0).Rows(0).Item("ArticleTitle")
 
Back
Top