这是我的图片网址
string fileUrl = file.Link;
我想在Response.Write上显示这个。如何做到这一点?
Response.Write("<img src='" & fileUrl& "'/>")
以上代码我试过了。但它不起作用。
答案 0 :(得分:2)
就是&amp; ... 它可以通过替换&amp;用+ ..
Response.Write("<img src='" + fileUrl+ "'/>")
答案 1 :(得分:0)
让filePath
包含如图所示的虚拟地址
string filePath = "http://localhost:2053/Styles/Images/myPersonalImage.jpg"
Response.Write("<img src='" & filePath & "'/>");
答案 2 :(得分:0)
您需要使用Server.MapPath。
string fileUrl = Server.MapPath(file.Link);