ASP.Net MVC 3: multiple versions of the site without changing of URL, is it possible?

LittleRascal

New Member
The problem is we have our site written in ASP.Net MVC 3 and we want to change something in the core. The problem is not every client can be moved to this new version/format (because of some technical inner restrictions) so it means that we need to keep 2 versions of the same functionality (backend and frontend) simultaneously. And we don't want our clients to worry about URLs. So the ideal solution would be keep the same URL but redirect clients to the different versions. I'm thinking about routing and areas but I'm not sure if it's possible for example to have 2 areas (folders whatever) with the different versions of the same application. Or to load the assemblies on the fly. After user logged in we can decide if (s)he should be redirected to the new or old version.As far as all the clients have been moved to the new version we don't need this system more.Could you please recommend the proper approach?Thanks
 
Back
Top