I am rendering a new view from some view(say mainView) by using Html.ActionLink("","",new{id=packageID})
and my controller action(ActionLink passing control to) look like
public ActionResult editChecks(int packageID)
{return View();}
Now at Rendered View("editChecks") i want to hide packageID so that i can use it(by passing it to another controller action) on another action by any means
i.e I am using form inside View("editChecks") which is submitting data to some action say(action2)
Presently I am using this in my view("editChecks")
and string pid = Request.Form["packageID"];
at my controller action(need packageID) is this works fine for long run??? Or is there any alternate i should go for???