Html.RenderAction 与 FileContentResult
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Html.RenderAction 是一个 void 方法,iirc,因此需要像以下这样调用它:
或者
如果您使用的是 webforms
Html.RenderAction is a void method, iirc, so it needs to be called like:
or
if you're using webforms
在我看来,您应该多次使用
img
标签并将 URL 指向某个 CDN。It seems to me that you should use the
img
tag multiple times and point the URL to some CDN.