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???

link|improve this question

77% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You can declare any expected parameters in the method. You can also declare a default if it is not supplied String packageID = "0"

EDIT: your question is confusing. If you want to access it on the view, use viewbag.

public ActionResult action2(Int32 packageID) {

  // can use packageID here

 // Or make it accessable on the view
 ViewBag.PackageID = packageID;
  return View();
}

On the view you can access this by typing

@ViewBag.PackageID

Though I question why your packageID is a String in some cases. Should you not be using Int32?

EDIT: Going on your comments,

@Html.Hidden("PackageID", @ViewBag.PackageID)

Will have the attribute on the page, hidden. And will be passed to any called submit (assuming within the form) as the name "PackageID"

link|improve this answer
I don't want to Display value passed by controller action to view rather i need that value at the same view in hidden format(so that value is hidden to the end user). And i am passing value to view by using ViewData dictionary(@ViewBag.PackageID) – roastedProgram Dec 26 '11 at 5:50
Like @Html.HiddenFor(model=>model.PackageID) is used for – roastedProgram Dec 26 '11 at 5:52
Then just do @Html.Hidden("PackageID", @ViewBag.PackageID) This is the same as above, but without being attached to a model. i.e. you can assign it anything. – Doomsknight Jan 3 at 11:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.