page-title

Is the meta type="title" tag needed and what's the best format for the title tag?

I have seen some websites use the following tag: <meta type="title" content="Title of the page" /> Is it needed when you have a <title>? Also, what's the best formatting for a page title? Some ideas: Page Description :: Company Name Page Description - Company Name Page Description <> Company Name Company Name: Page Description ... ...

How to change the Page Title in ASP.Net 1.1 ?

With ASP.Net 2.0 you can use the Title property to change the page title : Page.Title = "New Title"; But since in ASP.Net 1.1 there isn't a Title property in the Page class, how can I change the page's title from the code-behind ? ...

retrieving page title in rails

Curious as to how to approach this same problem using ruby / rails - http://stackoverflow.com/questions/399332/fastest-way-to-retrieve-a-title-in-php Is there a plugin or gem that anyone recommends? cheers! ...

Setting the Page-Title in .Net using C# from a Class

Question, How do i set the title of a page from a class. Is it even possible? I can and have set the page title from a page itself and a usercontrol. Can I, How Do I do this via a class using C# .Net Here is what im looking to do, From the Aspx Page i want to call a function that passes in the string title, and have the class set th...

asp.net mvc - setting meta tags & page title

Hi, I have my asp.net mvc project setup which passes strongly typed view models to every view using a BaseViewModel. The base view model includes information such as page title & meta tag information. Is there a fast & simple way to use this information from my ViewModel to set this information in my master page? At the moment i have ...

Title on Master Page on ASP.Net MVC

To manage page title on page's,I have a master page where i am taking ContentPlaceHolder. <title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /> </title> and on every page i write <asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">Some Title Here </asp:Content> Now my client ask me for rem...

How to use Eval in codebehind to set Page.Title

I have a SQLDataSource that is bound to a ListView control but I want to place parts of the bound record into the HTML TITLE attribute. Here is my codebehind file that I want to change so it can use Eval to construct a dynamic TITLE based on the data content: Public Partial Class zShowAd Inherits System.Web.UI.Page Protected Sub Pa...

Prepend to the title tag using jQuery?

I want to have my title tag look like this: My Website - Name of Page I want to prepend the My Website - part so that I don't have to type it on every new page I make. So the title tag that I actually have on the page would be: <title>Name of Page</title> Is this possible? ...

How do I set the title of a page in a joomla component?

I have a very simple joomla component that returns database results. It is not structured int the MVC format. How do I code the component so I can designate a page title? I wouldn't want to disable the existing functionality of joomla content articles. ...

Can jQuery Coda-Slider rewrite the title of the page on tab change?

We are building a site with Coda-Slider and are wondering if its possible to change the title of the page when changing tabs (without having to refresh the page)? I'm not that great at jQuery yet (let alone straight javascript), so I'm not sure if this is even possible. We're using version 2.0 of Coda-Slider and loading the latest jQuery...

change title name

i want to change the title of my page.aspx through its control webcontrole.ascx ...

custom pages give 404 error title in Wordpress

Hi, I'm running a site powered by WordPress with extra pages... To integrate these pages with the WordPress theme I use this code: <?php $blog_longd='Title'; // page title define('WP_USE_THEMES', false); require('wp-blog-header.php'); get_header(); ?> html code <?php get_sidebar(); get_footer(); ?> This works fine, however page tit...

ASP.NET: Having common Page title in master page with each page adding page-specific title?

My master page looks like: <head runat="server"> <title> <asp:ContentPlaceHolder ID="PageTitlePlaceHolder" runat="server" /> </title> Content pages look like: <asp:Content ID="TitleContent1" ContentPlaceHolderID="PageTitlePlaceHolder" runat="Server"> My Page </asp:Content> This works by placing the content ...

UpdatePanel seems to re-encode characters in the page title?

I have pages with special characters in the title for proper typography, for example it says Exchange ‘07 Groups" with a proper apostrophe, not a single quote. The HTML entity for the apostrophe is &#8216; So, I've found that if I set the page title from VB, the title displays just fine, but as soon as an update panel updates that HTML...

Page title structure: SEO and accessibility

I am choosing a page title structure for my website and am unsure what to choose in terms of accessibility and SEO. Is there a benefit to putting site title after the page title because of the unique part being earlier? Are there any other benefits one way or another? Example 1: Page title | Delan Azabani Example 2: Delan Azabani » Pag...

Change inactive page 'Title'

I influenced from StackOverflow Chat. Here when the page is inactive then number of the new incoming chat messages are displayed in the Page title. When the page is activated the this number is disappeared. How can I implement this concept in my application? I also want to highlight that window. ...