Posted on: 4/5/2014 8:42:29 AM | Views : 238

i need to call an action in a  defferent controller which is returing a partial view(this partial view has parameters on its action) .i have following code but sounds like it has a error,
how to do this in mvc 3.
@{Html.RenderPartial("GetRelatedPackages", "MainPackagesANDRelatedPackages", new { id = id, pid = pid });} and this is my controller method
public ActionResult GetRelatedPackages(int id, string pid) { }

Go to the complete details ...