Hello -
I recently converted a VS 2003 Website to VS2010, adding a MasterPage and SiteMap.
When I click on a menu item, it shows the page, but none of the code is firing. Because of this, I can't even debug it. The debugger seems to get "caught" in the master page and never proceeds to the VB code in the child page, although it does create the design code for the page.
The code at the top of my Master reads:
<%@ Master Language="VB" AutoEventWireup="false" CodeFile="RFE.Master.vb" Inherits="Site" %>
The code in the page I'm trying to get to fire is:
<%@ Page Title="" Language="VB" MasterPageFile="~/RFE.master" AutoEventWireup="false" CodeFile="Search.aspx.vb" Inherits="Search" %>
Any help anyone can give me will be greatly appreciated!