Advertisement
Guest User

Untitled

a guest
May 7th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public class SampleWidgetController : Controller
  2. {
  3. public ActionResult Content()
  4. {
  5. ...
  6. }
  7. }
  8.  
  9. public class CommonController : Controller
  10. {
  11. public ActionResult Content(string controllerName, string actionName)
  12. {
  13. // I want all requests to SampleWidget/Content to be passed here
  14. // With controllerName = "SampleWidget" and actionName = "Content"
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement