Title Tag

  • Thread starter Thread starter Rob T
  • Start date Start date
I tired that. When you kick back into Design mode, the code is amazingly is
removed and just the ID remains...
 
give the title tag some id and set it to run at the server:
<title id=title1 runat=server></title>

then you can change the title like this:
title1.innertext = "some title"
 
Back
Top