Why won't my image display??

Posted by Josh on Stack Overflow See other posts from Stack Overflow or by Josh
Published on 2010-05-01T01:51:06Z Indexed on 2010/05/01 1:57 UTC
Read the original article Hit count: 361

Filed under:
|

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>

© Stack Overflow or respective owner

Related posts about web-development

Related posts about ASP.NET