I am going to develop the web application in asp.net. where as in this application there is 4 user perspectives. all are independent all togather. but I want to develop under the single web solution. also want to create the number web applications for each user perspective, under this solution. so can i use common web.config file for this solution? what will impact ? if can not then how to manage the config files so that I need to change configuration at once (if need in future)
Share
Yes, you can use the common web.config file. Config files are hierarchical — with some caveats that don’t concern you now because you will use only one config file. If, in the future, you decide each app needs a slightly different config, then you can create a web.config in each app, containing only the config deltas.
Having said all this, I have never developed an app this way because