I have kind of a wierd problem... I have seven pages that share a Master Page; six of the seven pages work fine. However, one of the seven pages does not display the banner image. I have enclosed snippets of the pages below.
First is the top of the Master Page, followed by a snippet of View Source of a working page and a snippet of View Source from the broken page:
<!-- Master Page -->
<%@ Master Language="VB" AutoEventWireup="false" CodeFile="reports.master.vb" Inherits="Site" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head runat="server">
<title></title>
<link rel="SHORTCUT ICON" href="images/favico2.ico"/>
<link href="site.c ...
Go to the complete details ...