Response.write不显示图像

时间:2013-06-10 21:37:49

标签: html asp.net vb.net

我试图像这样显示生成的图像:

Response.Write("<img src='" & filepather & "'/>")

其中filepather被定义为图像的字符串。这是正确的文件路径,我没有得到&#34;破坏的图像链接&#34;图标。此代码位于aspx页面内的vb脚本中。

我忘记了什么吗?如果我做

response.write("hello"),

它工作正常。

1 个答案:

答案 0 :(得分:2)

确保filepather字符串包含图像的虚拟地址而不是物理地址。

就像我测试过这个并且工作正常。

Dim filePath As String = "http://localhost:2025/Styles/Images/logo.png"
Response.Write("<img src='" & filePath & "'/>")