如何在新的浏览器选项卡中打开图像?

时间:2011-03-24 13:18:02

标签: asp.net-mvc

我正在尝试在新的浏览器标签中打开图片,如下所示:

<a href="" target="_blank">
  <img height="660px" width="420px"  
   src="<%= Url.Action("WebPageImage", "WPMManagement", new { id = actualId }) %>" 
   alt="bild mit webseiten version" />
</a>

我需要只展示一张图片,而不是其他任何东西(没有样式等) 怎么样?我需要什么?

1 个答案:

答案 0 :(得分:2)

将href属性更改为图片的网址,您就可以了:

<a href='<%= Url.Action("WebPageImage", "WPMManagement", new { id = actualId }) %>' target="_blank">Click here to view the image</a>

编辑:如果您要从数据库中检索图像,那么您将需要Url.Action而不是Url.Content。查看this question以获取有关从数据库中检索图像的类似讨论。

编辑#2:更新了示例代码以使用Url.Action而不是Url.Content