07_05_GuyT
07_05_GuyT

Reputation: 2887

RedirectTo page with key

How can I redirect to page with key ?i.e. I want to redirect to specifc entry on the table ,how should I do that ? I need something like RedirectToAction("Edit" ,"2" );,how should I do that ?

for example here I redirect to page index but

RedirectToAction("Index");

Upvotes: 0

Views: 39

Answers (1)

user3559349
user3559349

Reputation:

Assuming your Edit method is public ActionResult Edit(int ID) {..., then

return RedirectToAction("Edit", new { ID = 2 });

Upvotes: 1

Related Questions