本文介绍了当我使用Internet Explorer 8中的asp.net(当我调试)在Visual Studio中建立一个网站时,我的图像不加载怎么加载?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我在Internet Explorer 8中使用asp.net(当我调试时)在Visual Studio中建立一个网站时,我的图像无法加载吗?如何启用它们?

When i build a web site with my visual studio in asp.net (when i debug) in the internet explorer 8 ,my images dont load how do i enable them to load?

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %><br />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><br />
<html xmlns="http://www.w3.org/1999/xhtml"><br />
<head runat="server"><br />
    <title>..::my first webpage::.</title><br />
    <style type="text/css"><br />
        .style1<br />
        {<br />
            width: 59px;<br />
        }<br />
        .style3<br />
        {<br />
            width: 163px;<br />
        }<br />
        .style4<br />
        {<br />
            width: 59px;<br />
            height: 161px;<br />
        }<br />
        .style5<br />
        {<br />
            width: 163px;<br />
            height: 161px;<br />
        }<br />
        .style6<br />
        {<br />
            height: 161px;<br />
        }<br />
        .style7<br />
        {<br />
            width: 178px;<br />
            height: 94px;<br />
        }<br />
    </style><br />
<script language="vbscript" type="text/vbscript"><br />
<br />
</script><br />
</head><br />
<body bgcolor="#006666"><br />
    <form id="form1" runat="server"><br />
    <div><br />
    <br />
    </div><br />
    <table style="width:100%;"><br />
        <tr><br />
            <td class="style4"><br />
                </td><br />
            <td class="style5"><br />
                <asp:Image ID="Image1" runat="server" ImageUrl="~/App_Data/images.jpg" /><br />
            </td><br />
            <td class="style6"><br />
                <img alt="" class="style7" src="" <br />
                    style="background-image: url(''App_Data/images.jpg'')" /></td><br />
        </tr><br />
        <tr><br />
            <td class="style1"><br />
                <input id="btnClient" type="button" value="Client" style="height: 26px"  onclick="return btnClient_onclick()" /></td><br />
            <td class="style3"><br />
                <asp:Label ID="Label1" runat="server" Text="Client"></asp:Label><br />
            </td><br />
            <td><br />
                &nbsp;</td><br />
        </tr><br />
        <tr><br />
            <td class="style1"><br />
                &nbsp;</td><br />
            <td class="style3"><br />
                &nbsp;</td><br />
            <td><br />
                &nbsp;</td><br />
        </tr><br />
        <tr><br />
            <td class="style1"><br />
                <asp:Button ID="btnServer" runat="server" style="height: 26px" Text="Server" /><br />
            </td><br />
            <td class="style3"><br />
                <asp:Label ID="Label2" runat="server" Text="Server"></asp:Label><br />
            </td><br />
            <td><br />
                &nbsp;</td><br />
        </tr><br />
    </table><br />
    </form><br />
</body><br />
</html><br />

推荐答案




这篇关于当我使用Internet Explorer 8中的asp.net(当我调试)在Visual Studio中建立一个网站时,我的图像不加载怎么加载?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 05:35