在我看来,我正在使用此代码,我想显示设备图像,但如果没有上传原始图像,我想显示一个默认图像(NoImage.jpg),但默认图像不显示......
@if (item.EquipImage != null)
{
<td><img src="@Url.Content("~/Content/EquipImages/" + System.IO.Path.GetFileName(item.EquipImage))" alt="" width="70" height="70"/> </td>
}else
{
<td><img src="@Server.MapPath("~/Content/EquipImages/NoImage.jpg")" alt="" width="70" height="70"/> </td>
}
==================================================== =================== 在 Jsmith 和 Json 的帮助下,代码正在运行.. 我在这里粘贴的工作代码可能对某些人有帮助:)
@if(! string.IsNullOrEmpty(item.EquipImage)){
<td><img src="@Url.Content("~/Content/EquipImages/" + System.IO.Path.GetFileName(item.EquipImage))" alt="" width="70" height="70"/> </td>
}else{
<td><img src="@Url.Content("~/Content/EquipImages/NoImage.jpg")" alt="" width="70" height="70"/> </td>
}