Forum Moderators: open
Can any one help me how to change the language of any page.
I have some dynamic pages like asp files and the data comes from database.
What I need is to display the page content to diffrent languages.
Suppose user selects Germany and the page content changes to german language.
Can any one help in solving this issue?
With regards
Anirban
lang=de). Of course, this requires that you have the necessary translations in your file already. Then, after parsing the query string, you can do something like: if(lang=='de') {
// German text
}
else {
// default text
}