I indexed my site using CGI and I am using asp.net 2.0. When I search the site I get "No title" in every page. However, each page has a title with it, at the top of the page, for example:
<%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="About.aspx.vb" Inherits="About" title="About Us" %>
My site is using master pages.
Why it is not showing the title? I can't add <head> and <title> elements to aspx page because I will get error, which says "content is not supported outside "script" or "asp:content" regions. Is there any way to solve this problem in asp.net pages?
Thanks
<%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="About.aspx.vb" Inherits="About" title="About Us" %>
My site is using master pages.
Why it is not showing the title? I can't add <head> and <title> elements to aspx page because I will get error, which says "content is not supported outside "script" or "asp:content" regions. Is there any way to solve this problem in asp.net pages?
Thanks
Comment