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?
If this namespace is used frequently, you should probably consider adding it to the namespaces node in your
Views/Web.configfile.This ensures that all pages will have access to this namespace, and intellisense will be available also. This has also been discussed in another question.
The XML structure would be as follows.
The
namespacesnode may not exist, so you should add it inside thepagesnode (which should exist).