Timo Breumelhof wrote
Page Title = PortalSettings.ActiveTab.Title
Thanks Timo! For those of you paying attention, the answer to my question is:
<%=PortalSettings.ActiveTab.Title%>
My question kinda revolves around my bounce back-and-forth on Wells Doty's thread on Header Tag / Logo Replacement, found here. Essentially, I've used this in the following way...
<div class="logo-wrpr">
<dnn:LOGO runat="server" id="dnnLOGO" />
<h1 class="logo">
<a title="<%= PortalSettings.PortalAlias.HTTPAlias%>" href="#">
<span><%=PortalSettings.ActiveTab.Title%></span></a></h1>
</div>
And then the CSS (again, this is for a specific skin:
.logo-wrpr { float: left; width: 470px; max-width: 470px; height: 80px; overflow: hidden; }
.logo { margin: 0; padding: 0; }
The only reason I've used the [LOGO] token is that this markup is for a paying client who insisted on using "convetional" DNN skinobjects, rather than CSS background images. Ultimately, I would revise my Header / Logo replacement to the following:
<h1 class="logo"><a title="<%= PortalSettings.PortalAlias.HTTPAlias%>" href="<%= PortalSettings.PortalAlias.HTTPAlias%>"><%=PortalSettings.ActiveTab.Title%></a></h1>
And then style as I mention in the Header / Logo Replacement Thread.
Thanks again, Timo for the list - very, very handy bit of info to have...