Why won't my image display??
- by Josh
Hello All-
Do y'all see anything wrong with my code below? I want my image to appear immediately after page opens but it only opens after the report is run. Please let me know. Thanks.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SelectionReport.aspx.cs" Inherits="Geocortex.Essentials.WebFramework.SelectionReportPage" Culture="auto" UICulture="auto" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title><asp:Literal meta:resourcekey="Title1" runat="server" /></title>
</head>
<body>
<form id="form1" runat="server">
<p>
<asp:Image ID="Image1" runat="server" ImageAlign="Left"
ImageUrl="~/Images/Loading.gif"
style="z-index: 1; left: 254px; top: 15px; position: absolute" />
</p>
<gcx:SelectionReportViewer ID="SelectionReportViewer" runat="server" />
</form>
</body>