I have an asp.net website. I want to add subdomain for a secondary language:
www.domain.com = main
cn.domain.com = chinese
I have no idea where to start...
Thanks.
I have an asp.net website. I want to add subdomain for a secondary language:
www.domain.com = main
cn.domain.com = chinese
I have no idea where to start...
Thanks.
First off you might want to read a bit general about how to do mutlilingual applications, here are a couple of resources for you to start off with:
In short what you might want to do is in your asp.net application, you listen to what sub-domain the users are coming from and based on that you use the above to change the current language.
Something like these two steps:
Another thing you need to do is move your text into resource files that corresponds with the language the user wants to view. The above tutorials should go through those steps aswell.