我在div中动态加载图像。图像是在Firefox中加载但不在chrome中加载。我已禁用adblock但仍未加载图像。
我将图像路径存储在数据库中,并将图像存储在根文件夹中。任何帮助都将非常感激。
str.Append("<div style='padding:20px;margin-top:10px;'>");
str.Append("<table border='1' style='width:350px;margin-top:20px;font-family:arial;font-size:12px;'>");
str.Append("<tr><td style='width: 150px;'><center><img src='" + Imagesrc + "' alt='2' style='width:150px;height:150px'/>"
+ "</center></td></tr>");
str.Append(" </table>");
str.Append("</div>");
Imagesrc = "Images/img1.png";
答案 0 :(得分:0)
尝试
Imagesrc = @"Images/img1.png";
或
Imagesrc = "Images//img1.png";
但你的代码很奇怪。为什么要动态生成Web布局?为什么不使用ASP.NET MVC或WebForms?