3
I am developing a multi-client web application for a Saas and I would like each client to have a different URL to access their area in the application, for example:
http://meudominio.com/cliente1 http://meudominio.com/cliente2
I thought about creating in IIS an application for each client, but this in addition to costly can degrade the performance of the webserver (I believe).
Is there any way to do this using routes?
Does this work in webforms? I’ve tried this type of route but in webforms you have to define which page the route serves.. I can’t get a "default" route like that.
– Alexandre L silva
http://www.codeproject.com/Tips/698666/USE-OF-MapPageRoute-Method-IN-ASP-NET-WEBFORM-ROUT
– Guilherme Branco Stracini