|
code
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Changing the document.title from a user controlI would like to change the <title></title> of a page from a user control. I
have been unable to find any property in VB that allows me to do this. The only thing I have been able to find that might be related is when in Design view, there is a property called title under the DOCUMENT object in properties, which leads me to believe that there may be a way to access a DOCUMENT.title somewhere (although that may be only for Javascript/JScript). Does anyone know of a way to change the document title programmatically using VB.NET in ASP.NET from a User Control? Thanks. Nathan,
Not the nicest stuff, although I am busy again at the moment with it. (Don't set imports to this namespace). http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/mshtml/reference/reference.asp It follows completly the DOM I hope this helps, Cor Hi,
To be able to change the page title from an asp.net application add the following to html portion of the aspx. <HEAD> <title runat="server" id="PageTitle"></title> ...... </HEAD> Note that if you make changes to the web page vb.net will drop the runat=server. Make sure you add it back in or you wont be able to change the page title Add the following to the aspx.vb file Protected PageTitle as new htmlgenericcontrol To change the page title from the page PageTitle.InnerText= "My new page title" To access this from a user control Dim pagetitle as htmlgenericcontrol Try pagetitle=ctype(me.page.findcontrol("PageTitle"), htmlgenericcontrol) pagetitle.innertext="Live from user control" catch end try Ken ------------------------ Show quoteHide quote "Nathan Sokalski" wrote: > I would like to change the <title></title> of a page from a user control. I > have been unable to find any property in VB that allows me to do this. The > only thing I have been able to find that might be related is when in Design > view, there is a property called title under the DOCUMENT object in > properties, which leads me to believe that there may be a way to access a > DOCUMENT.title somewhere (although that may be only for Javascript/JScript). > Does anyone know of a way to change the document title programmatically > using VB.NET in ASP.NET from a User Control? Thanks. > -- > Nathan Sokalski > njsokal***@hotmail.com > http://www.nathansokalski.com/ > > >
Click checkbox's label - javascript onclick gets called twice
AutoPostBack How can I use my Own control in DataGrid? Validation not working in paging Using a Stylesheet in a User Control The nowrap Property of TD Tags Text control - password Handling Events for Dynamically Created Controls TextBox.Text not getting the proper value Referencing Datagrid Rows while Datagrid is Sorted |
|||||||||||||||||||||||