I'm trying to use RenderAction in the following way:
'<% Html.RenderAction( x => x.ControllerAction(开发者_JAVA技巧) ); %>'
as seen here:
http://devlicio.us/blogs/derik_whittaker/archive/2008/11/24/renderpartial-vs-renderaction.aspx
and here:
http://eduncan911.com/blog/html-renderaction-for-asp-net-mvc-1-0.aspx
but I keep getting an error about the method not having type parameters. also in MSDN I see there is no documentation for it, and also checking the MVC source code I can't find anything. I'm using the latest ASP.Net MVC (2.0 RTM)
is this feature no longer available? how can I use it?
thanks.
There are no Html.RenderAction
overload which accepts an expression in the ASP.Net MVC 2 RTM. So no, it's not available.
精彩评论