How to create a reusable Asp.Net Mvc application?
Posted
by Amitabh
on Stack Overflow
See other posts from Stack Overflow
or by Amitabh
Published on 2010-06-18T08:59:00Z
Indexed on
2010/06/18
9:03 UTC
Read the original article
Hit count: 265
We have multiple Asp.Net WebSites each running on IIS.
Site1 : http://www.Site1.com/
Site2 : http://www.Site2.com/
We have to implement Shopping Cart functionality for each of the above WebSites. For each web site the corresponding shopping cart should work on the following Url.
Shopping Cart for Site1 : http://www.Site1.com/shop/cart
Shopping Cart for Site2 : http://www.Site2.com/shop/cart
We want to develop the Shopping Cart application using Asp.Net MVC 2.0. But it should be reusable in both the above sites.
© Stack Overflow or respective owner