Hi,
My contoller has the following code
public ActionResult Call(string a)
{
return View("~/Views/Catalog/Single.cshtml");->Note this view is not the controller view .It is different view.
}
I want to pass the parameter a to this view.Is it possible?
Go to the complete details ...