Is it possible to change the page title from within VB code.
Last edited by davidrobin; May 20th, 2004 at 08:51 AM.
Things I do when I am bored: DotNetable
You could do it by setting the Page title to: Code: <title><%= Session("PageTitle") %></title> and then setting Session("PageTitle") in VB 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.
Forum Rules