i want to make some question about asp.net mvc. How i call asp.net mvc controller action from normal aspx web form? Our project is used asp.net mvc framework with visual studio 2008 C#.net. For eg,i want to use like this in normal aspx web form.
public ActionResult callMvc()
{
return RedirectToAction("Display","TempController");
}
I know it should not using like this way in MVC project,but,we need for some case.
Regards
Indi