Sefer K
Sefer K

Reputation: 514

call controller action from view

Is there a way to call automaticliy an action from aspx or ascx on asp.net mvc.1.0 Think like a redirection.

Upvotes: 3

Views: 1302

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038720

You may take a look at Html.RenderAction from the ASP.NET MVC Futures assembly. The helper method is built in ASP.NET MVC 2.

Upvotes: 3

Related Questions