Google search engine displaying site title as "Web"

152 Views Asked by At

The title displays properly in all other search engines, it only does this with Google's search:

enter image description here

The site (www.ClearspanInc.com) has been up for awhile, and has had more than enough time to be crawled. We are using ASP.net.

    <!DOCTYPE html>
    <html lang="en">
      <head id="Head1" runat="server">
        <meta charset="utf-8" />
         <title>******* - <%: Page.Title %></title>
        <asp:PlaceHolder ID="PlaceHolder1" runat="server">     
              <%: Scripts.Render("~/bundles/modernizr") %>
         </asp:PlaceHolder>  
2

There are 2 best solutions below

9
On
<head>
<title>My Title</title>
</head>
0
On

Try this inside the @Page:

<%@ Page Title="Home Page" %>

Or inside the Page_PreRender you can add Page.Title = "";