Thanks for your help, but I'm a little confused.
I added <title><asp:Literal id="litTitle" runat="server"
Text="Scholarship"></asp:Literal></title> to my page header. Now how do I
change the text of the title. I have existing code that says...
If Request.Params("action") = "newscholar" Then
dgNewScholar.Visible = True
...
ElseIf Request.Params("action") = "editscholar" Then
dgEditScholar.Visible = True
...
End If
Can I add something to this or do change it in the header?
Just for anyone interested, the Page class ASP.Net 2.0 exposed a Title
property for this very reason. It also exposes a very nice Header property
that let's you easily add things (like style shee links, meta tags) to the
head.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.