I'm planning a multicountry site. I will be using a subdomain for each country, for example:
uk.example.com (UK)
us.example.com (USA)
ca.example.com (Canada)
Each country will have sections, but not all the countries will have all the sections.
So for example, the UK site will have available 3 sections, the US site will have 5 sections and the CA sill have all the available sections (suppose there are 8 sections).
I need in some way to turn sections ON and OFF in each subdomain and in interior pages change options (for example in UK I have to show a different money symbol and maybe use a different text).
Apart of that, I need to use some kind of parameter according the subdomain used (the info is in the same database, so if the subdomain is UK I need to retrieve only the info for UK).
The easy way would be to replicate in each subdomain the code behind, but I don't want to do it this way, because when I change something in the code, I would have to replicate for all the others subdomains.
I'm using C#.
Any suggestions and help are much appreciated :)