ActionResult 使用 ToString() 重定向呈现
使用以下示例: http://www.west-wind.com/Weblog /posts/899303.aspx
以下行...
return req.RedirectingResponse.AsActionResult();
呈现字符串“DotNetOpenAuth.Messaging.OutgoingWebResponseActionResult”。 这是在发布的行中作为 ActionResult 返回的类。有谁知道为什么我将类名作为字符串而不是实际的重定向?
提前致谢!
Using the following sample: http://www.west-wind.com/Weblog/posts/899303.aspx
The following line...
return req.RedirectingResponse.AsActionResult();
renders the string "DotNetOpenAuth.Messaging.OutgoingWebResponseActionResult".
This is the class being returned as ActionResult in the line as posted. Does anyone know why I get the class name as string instead of a actual redirect?
Thnx in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
难道你的 Bin 目录和 Web 服务器中有多个版本的 MVC?我突然想到,如果您将 MVC 类型的多个程序集(不同版本)(例如
ActionResult
)加载到您的 AppDomain 中,并且AsActionResult
方法返回一个版本,并且您的 MVC Web 应用程序使用不同的版本,它可能只是用ToString
来解决。您运行的是哪个版本的 ASP.NET MVC? DotNetOpenAuth 的AsActionResult
方法是针对 MVC 框架 1.0 RTM 版本编译的。如果您使用的是 ASP.NET MVC 2(包含在 .NET 4.0 中),我认为这可能是一个问题。我相信,如果您将此代码段添加到 MVC 2 的 web.config 文件中,它将允许您使用 DotNetOpenAuth 的官方版本,因此您不必构建自己的:
Could it be that you have multiple versions of MVC in your Bin directory and your web server? It strikes me that if you had multiple assemblies (different versions) of the MVC types like
ActionResult
loaded into your AppDomain, and theAsActionResult
method returned one version and your MVC web app used a different version, that it might just bail out with aToString
. What version of ASP.NET MVC are you running? DotNetOpenAuth'sAsActionResult
method was compiled against the 1.0 RTM version of the MVC framework. If you're using ASP.NET MVC 2 (included with .NET 4.0), I could see this maybe being a problem.I believe if you add this snippet to your MVC 2's web.config file, that it will allow you to use the official build of DotNetOpenAuth so you don't have to build your own:
另一个解决方案,为我使用 .Net 3.5 和 MVC 2。
而不是
使用
Another solution, working for me with .Net 3.5 and MVC 2.
Instead of
use