Codeplex 预览版 5 中的 MVC RC/Beta 中的 Actionlink
在预览版 5 中,以下是运行良好的操作链接:
列表是控制器,about 是操作
2.
var value = new RouteValueDictionary();
text and actionname are both strings
Html.ActionLink(文本,actionName,值);
我需要将这些内容转换成什么才能在 RC 版本上解锁?
In Preview 5, here are the actionlinks that worked fine:
listing is the controller and about is the action
2.
var values = new RouteValueDictionary();
text and actionname are both strings
Html.ActionLink(text, actionName, values);
What would I convert these to get unblocked on the RC release?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
也许我不明白你的问题,但你上面的例子应该可以很好地使用 ASP.NET MVC RC。
Maybe I don't understand your question but your above example should work just fine with ASP.NET MVC RC.
不,在 RC 中使用它会产生此错误;
找不到方法:“System.String System.Web.Mvc.Html.LinkExtensions.RouteLink(System.Web.Mvc.HtmlHelper,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteValueDictionary)”。
Nope using this in RC generates this error;
Method not found: 'System.String System.Web.Mvc.Html.LinkExtensions.RouteLink(System.Web.Mvc.HtmlHelper, System.String, System.Web.Routing.RouteValueDictionary, System.Web.Routing.RouteValueDictionary)'.
我有同样的问题。
我得到了最新的 MVC Futures,这解决了这个问题。
http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId= 24142
I had the same problem.
I got the latest MVC Futures, and that fixed it.
http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24142