Question: Ok for the life of me I can't figure this out.
I'm using Master Pages. According to MS, (
Welcome to the MSDN Library Item#10) setting the title on the content page should be as easy as adding Title="home" to the Page declaration of the content page. Every time I do that, I get a 404 error.
This code works fine:
<%@ Page Language="
VB" MasterPageFile="~/master07.master" AutoEventWireup="false" CodeFile="event_brief.aspx.vb" Inherits="event_brief" %>
And when I do this, I get the 404:
<%@ Page Language="VB" MasterPageFile="~/master07.master" AutoEventWireup="false" CodeFile="event_brief.aspx.vb" Inherits="event_brief" Title="home" %>
Anyone seen this before?