Combining features from other projects in an ASP.NET MVC application

Posted by Katie D on Stack Overflow See other posts from Stack Overflow or by Katie D
Published on 2010-12-28T13:44:42Z Indexed on 2010/12/28 13:54 UTC
Read the original article Hit count: 230

Filed under:
|

Hello,

I am writing an ASP.NET MVC application that combines a set of features from existing applications. The new application is suppose to use UI features and logic created (especially for this purpose) in the existing applications.

For that reason I wanted to create in the existing applications some kind of a "blackbox" that I will be able to drop in my new application along with a matching connection string, and it will work independently, binding data on it's own.

I thought about using partial views, but I am having trouble with passing the model data to it, since the controller of the new application should not know about the model of the existing applications.

I can not use ASP.NET WebForms, since my application should be a "postback-less" application, and ASP.NET AJAX toolkit or frameworks alike are out of the question.

Any help would be greatly appreciated.

Thank you,

Katie

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about AJAX