0

当使用虚拟路径加载页面并且图像已经在根文件夹中时,我无法设置图像。

以下是两个文件

默认2.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>

<!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 runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <asp:Image ID="Image1" runat="server" />
        </div>
    </form>
</body>
</html>

Default2.aspx.cs

protected void Page_Load(object sender, EventArgs e)
{
    Image1.ImageUrl = "~/abc.jpg";
}
4

1 回答 1

2

尝试ResolveUrl

Image1.ImageUrl = ResolveUrl("~/abc.jpg");
于 2013-04-15T20:36:21.540 回答