SEO title generation

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
9/21/2010 3:25:15 AM
Gravatar
Total Posts 8

SEO title generation

I also want to make a point about the generation of Title. Throughout the project title is generated as follows (ASP.NET creates automaticallyASP.NET creates automatically):
<title>
   
Page Title
</ Title>

On some forums, this topic is being actively discussed, as Some search engines such title can not see. Would be correct:
<title> Page Title </ title>
I do not think this is a mistake, but for SEO optimization would be better to fix it.

For example:
<title visible="false"> </ title>
<asp:ContentPlaceHolder id="seo" runat="server" EnableViewState="false" />

In ContentPlaceHolder `s add the code to bind data:
<title> <% # title%> </ title>

in a split code using data binding generates Title:
public partial class _Default: System.Web.UI.Page
(
protected string title;
protected void Page_Load (object sender, EventArgs e)
(
title = "Page Title";
DataBind ();
)

9/21/2010 5:52:51 AM
Gravatar
Total Posts 18439

Re: SEO title generation

Hi,

"SEO Experts" talk about a lot of stuff. There is a lot of snake oil ideas sold by "SEO Experts".

You think googlebot or any important search index bot doesn't read a title if it wraps a line?

Sorry, I don't think that and have more important things to work on. Furthermore changing that would be something that could break sites on the next upgrade since title is in the layout.master of the skin.

This is not a bug.

Best,

Joe

9/21/2010 6:31:43 AM
Gravatar
Total Posts 8

Re: SEO title generation

I think so too, but wanted to know the opinion from the outside.

Thank you

You must sign in to post in the forums. This thread is closed to new posts.