PDA

Click to See Complete Forum and Search --> : Is it possible to change the page title from within code *RESOLVED*


davidrobin
May 19th, 2004, 10:05 AM
Is it possible to change the page title from within VB code.

Fishcake
May 20th, 2004, 07:29 AM
You could do it by setting the Page title to:
<title><%= Session("PageTitle") %></title>

and then setting Session("PageTitle") in VB code.

davidrobin
May 20th, 2004, 08:50 AM
Its been a couple of years since I did more traditional asp, I had forgotten some of the more fundamental methods.

It works a treat.