How to inherit from a library in a MVC.NET view
- by Dofs
I am trying to implement CKFinder in my MVC.Net website, but the default setup only works for regular asp.net websites, so I am trying to alter it to work.
One page inherits from a library CKFinder.Connector.Connector. In the old days my aspx would just inherit="CKFinder.Connector.Connector", but how is this done in MVC.NET?
Is Inherits="System.Web.Mvc.ViewPage<CKFinder.Connector.Connector>" the same?