0

我有一个获取服务器映射路径的动态字符串,我们称之为 strPath。我正在尝试使用 <%strPath%> 将此字符串的值传递给 html,但它不起作用。任何帮助将不胜感激。

别介意这里的字符串是静态的,一旦我能成功展示图片,我就会让它变成动态的。

       protected void Page_Load(object sender, EventArgs e)
        {
            string imagePath = Server.MapPath("../Uploads/" + "10.jpg");
        }




<asp:Image runat="server" ImageUrl="<%imagePath%>" />
4

1 回答 1

1

为什么不在服务器端使用<asp:Image>并设置 ImageUrl 属性?

<html xmlns="http://www.w3.org/1999/xhtml">
   <head runat="server">
     <title></title>
   </head>
  <body>
   <form id="form1" runat="server">
      <div>
        <asp:Image runat="server" ID="dynamicImage">
      </div>
  </form>
  </body>
</html>

然后在你的代码后面:

protected void Page_Load(object sender, EventArgs e)
    {
        dynamicImage.ImageURL = http://YOURSITEURL/Images/YOURIMAGE.jpeg
    }
于 2012-10-11T15:08:12.003 回答