My first post somehow got merged into the same post, along with Thea's post. VERY weird. Nevertheless, here is my post again to avoid confusion. Here is a simple way to get/set your page title during runtime. HTML file:
VB Codebehind file:
Public Class MyPage
Inherits System.Web.UI.Page
Protected pageTitle As System.Web.UI.HtmlControls.HtmlGenericControl
Private Sub Page_Load(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles MyBase.Load
pageTitle.InnerText = "Dynamic page Title"
End Sub
End Class
Now you can get/set your page title by doing the following: PageTitle.Innertext = "Text to display" Hope that helps. Jon G www.Gizmocoder.com