Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how we can pass parameter and Area in redirecttoaction

return RedirectToAction("Index","Coupon1", 
                          new {Area = "Admin"},
                          new {id = currentcoupon.Companyid.id});
share|improve this question

2 Answers

up vote -1 down vote accepted
return RedirectToAction("Index", new { id = currentcoupon.Companyid.id, Area="Admin" });
share|improve this answer
It is good practice to provide some explanation as to why your answer solves the problem, as opposed to simply posting a chunk of code. – Forty-Two Feb 6 at 13:30
@Forty-Two Thank you for your suggestion and for down voted guy as well – karthik Feb 6 at 13:39

Just add your parameter to the same object that contains your area.

return RedirectToAction("Index","Coupon1", 
                        new {Area = "Admin", id = currentcoupon.Companyid.id});
share|improve this answer
+1 for faster answer... – AliRıza Adıyahşi Feb 6 at 6:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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