Html.RenderAction 与 FileContentResult

发布于 2024-12-04 15:59:54 字数 347 浏览 0 评论 0原文

使用 MVC3,我有一个返回 FileContentResult(JPEG 格式)的控制器。我可以调用它,它会在浏览器中完美地显示 JPEG。 我想在页面上多次显示此内容,我能想到的唯一合理的方法是在视图中多次调用 Html.RenderAction() 。这适用于返回 ViewResult 的操作方法,但不适用于返回 FileContentResult 的操作方法。

错误是 编译器错误消息:CS1502:“System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)”的最佳重载方法匹配有一些无效参数

我做错了什么?

非常感谢

With MVC3, I have a controller that returns a FileContentResult, which is a JPEG. I can call this and it displays the JPEG perfectly in the browser.
I would like to display this multiple times on the page and the only reasonable way I can think of is using calling Html.RenderAction() multiple times within a view. This works for action methods that return ViewResult but not for this one that returns FileContentResult.

Error is
Compiler Error Message: CS1502: The best overloaded method match for 'System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)' has some invalid arguments

What am I doing wrong?

Many thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

任谁 2024-12-11 15:59:54

Html.RenderAction 是一个 void 方法,iirc,因此需要像以下这样调用它:

@{Html.RenderAction(..);}

或者

<% Html.RenderAction(...); %> 

如果您使用的是 webforms

Html.RenderAction is a void method, iirc, so it needs to be called like:

@{Html.RenderAction(..);}

or

<% Html.RenderAction(...); %> 

if you're using webforms

天赋异禀 2024-12-11 15:59:54

在我看来,您应该多次使用 img 标签并将 URL 指向某个 CDN。

It seems to me that you should use the img tag multiple times and point the URL to some CDN.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文