Hi,
Here is a follow up to the problem I've been having with the images not displaying and the style sheets not being linked.
Here is the information from the Cassini Web Server Explorer:
Port: 4146
Name: BLT Local Edition
ID: application ID
Physical Location: c:\Program Files\BLT
Default Document: Default.aspx
My application is installed in the correct directory: c:\Program Files\BLT
C:\Program Files\BLT\bin contains dll files
C:\Program Files\BLT\css contains FormStyles.css
C:\Program Files\BLT\images contains banner67.gif
C:\Program Files\BLT contains web forms (webForm.aspx)
Here is a copy of webForm.aspx
<%@ Page language="c#" Codebehind="WebForm.aspx.cs" AutoEventWireup="false" Inherits="BLT.WebForm" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>WebForm</title>
<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
<meta content="C#" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
<LINK href="css/FormStyles.css" type="text/css" rel="stylesheet">
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
<asp:Image id="Image1" runat="server" Width="760px" Height="67px" ImageUrl="images/banner67.gif"></asp:Image>
<asp:Label id="Label1" style="Z-INDEX: 101; LEFT: 104px; POSITION: absolute; TOP: 136px" runat="server" CssClass="datagridheader">datagridheader</asp:Label>
<asp:Label id="Label2" style="Z-INDEX: 102; LEFT: 104px; POSITION: absolute; TOP: 168px" runat="server" CssClass="subtitle">subTitle</asp:Label>
<asp:HyperLink id="HyperLink1" style="Z-INDEX: 103; LEFT: 104px; POSITION: absolute; TOP: 208px" runat="server" NavigateUrl="WebForm.aspx">WebForm</asp:HyperLink></form>
</body>
</HTML>
Excerpt from FormStyles.css
.DataGridItem {font-size: 8pt; color: #000099; font-family: verdana, arial, helvetica, geneva, sans-serif; background-color: #ffffff; border-style:none; border-collapse:collapse; }
.subtitle {font-size: 10pt; color: 000099; font-family: verdana, arial, helvetica, geneva, sans-serif; font-weight: bold; }
Thanks!
JR