Add title to page

  • Thread starter Thread starter shapper
  • Start date Start date
S

shapper

Hi,

How can I add the <title> tag inside the <head> of the page and set its
value all at runtime?

Thanks,

Miguel
 
Hi,
Hi,

How can I add the <title> tag inside the <head> of the page and set its
value all at runtime?

Thanks,

Miguel

Add a <title runat="server" id="title">No title</title> tag to your ASPX
page. Using this, you can then access it in the code behind at runtime.

HTH,
Laurent
 
Back
Top