views:

33

answers:

1

Is it possible to build a DNN module that uses ASP.NET MVC?

Granted that DNN doesn't support ASP.NET MVC out of the box...but since both DNN and MVC run on top of the ASP.NET pipeline...

The reason I ask. Large legacy website running on DNN:

http://blahblahblah.com

I'd like to stick an existing ASP.NET MVC webpage/application here:

http://blahblahblah.com/subfolder

Is this better done by setting up a virtual directory etc on the server, or is there a way to integrate this with DNN?

+1  A: 

DNN is quite tightly tied to Webforms. ASP.Net MVC would be very difficult, maybe impossible to integrate in a module. However DNN does support Webforms MVP (Model View Presenter) which allows for all of the structural/testing benefits of MVC in the WebForms context. All new modules developed by DotNetNuke Corp. are using the Webforms MVP pattern.

Here is a link to get you started Step by Step Webforms MVP and DotNetNuke – Part 1.

ScottS
Thanks! Will check this out.
Swingline Rage