我有一个 ActionResult 在http://example/image.png
有没有办法确定是否正在请求 URL
<img src="http://example/image.png" />
或者是从
<a href="http://example/image.png" target="_blank" />
?
所以我可以控制结果...
public ActionResult ViewPhoto()
{
if (<img src />)
{
return File();
}
else
{
return View();
}
}