Hello, I am experiencing an issue with Internet Explorer rendering. I have an aspx page that contains a table with a background image of size 800 x 700 px, while the table itself is sized at 800 x 550. However, in Internet Explorer, two tables are being rendered instead of one as shown in the image.
Here is the HTML for this page:
<
%@ Page Language="C#" MasterPageFile="~/mftpmasterpage.Master" AutoEventWireup="true" CodeBehind="Home.aspx.cs" Inherits="FtpWebInterface.Home" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server" >
<div >
[Table HTML content goes here]
</div;
In Firefox, Chrome, and Safari, only the above table is rendered correctly. However, in IE, two tables are displayed. Can anyone please help me identify the issue and provide guidance on how to fix it? Thank you.