Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Contributor
4392 Points
883 Posts
ASPInsiders
MVP
Mar 18, 2008 09:47 PM|LINK
public abstract class MyBase : Controller { protected override void HandleUnknownAction(string actionName) { /* Do something here */ } } public class HomeController : MyBase { /* regular controller actions go here */ }
tgmdbm
Contributor
4392 Points
883 Posts
ASPInsiders
MVP
Re: Issue in HandleUnknownAction method for custom Controller
Mar 18, 2008 09:47 PM|LINK
public abstract class MyBase : Controller { protected override void HandleUnknownAction(string actionName) { /* Do something here */ } } public class HomeController : MyBase { /* regular controller actions go here */ }