I want to integrate elFinder into asp.net mvc 4. I've seen the wiki for elFinder ASP.NET Connector. But I can't understand some of the config.
First of all is the
In Application_Start add Autofac registration:
// register IoC
var builder = new ContainerBuilder();
// add other registrations...
// add elFinder connector registration
builder.RegisterElFinderConnector();
// create container
_container = builder.Build();
// need also to set container in elFinder module
_container.SetAsElFinderResolver();
_container is undefined, should I just create the variable?
IContainer _container;
Where should I put this definition?
I've tried defining the container, and run the project inside visual studio, elFinder said "unable to connect to backend"
and
firebug returned this