本文介绍了引用位于asp.net MVC中我的C驱动器上的图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想引用位于 c:/image/ff.gif/中的图像.我怎样才能做到这一点?我尝试使用 img src 进行此操作,但无法使其正常工作.有什么想法吗?

I want to refer an image located in c:/image/ff.gif/. How can I do that? I tried to do it with img src, but couldn't make it to work. Any ideas?

推荐答案

如果要直接使用该图像,则该图像必须是网站的一部分.如果它位于您的网站根目录之外,则可以编写一个操作来获取图像并将其提供服务:

The image needs to be part of the site if you want to use it directly. If it is situated outside of your site root you could write an action that will fetch the image and serve it:

public ActionResult MyImage()
{
    return File(@"c:\imagefolder\imagell.gif", "image/gif");
}

然后执行以下操作:

<img src="<%= Url.Action("myimage") %>" alt="image description" />

这篇关于引用位于asp.net MVC中我的C驱动器上的图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 11:07