Is it possible to change the page title from within VB code.
Is it possible to change the page title from within VB code.
You could do it by setting the Page title to:
and then setting Session("PageTitle") in VB code.Code:<title><%= Session("PageTitle") %></title>
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.