Globalization
-
I have a small doubt regarding Globalization/Localization. I have a web form application where i need to provide more than 50 different localized resource supports. Apart from this, my application supports rich use of stored data (Sql Server Database) and obviously have few list of Listing controls (Repeater , Grid etc). My requirement comes like this, a) I need to provide full localized language support in all data which is displaying in each and every page. Regardless of, the name of controls, content of controls etc. To be concise, which ever text that i am displaying through page, need to be localized based on user selected language. b) Each and every setup needs to contain all supported languages. So user can switch and view content of site in different language. I stuck in, 1) I am not sure how to localize stored data in database. 2) How will I give or from where i generate localized information for all supported language. It would be grate if you can help me out through your valid comments. Sreejith Nair [ My Articles ]
-
I have a small doubt regarding Globalization/Localization. I have a web form application where i need to provide more than 50 different localized resource supports. Apart from this, my application supports rich use of stored data (Sql Server Database) and obviously have few list of Listing controls (Repeater , Grid etc). My requirement comes like this, a) I need to provide full localized language support in all data which is displaying in each and every page. Regardless of, the name of controls, content of controls etc. To be concise, which ever text that i am displaying through page, need to be localized based on user selected language. b) Each and every setup needs to contain all supported languages. So user can switch and view content of site in different language. I stuck in, 1) I am not sure how to localize stored data in database. 2) How will I give or from where i generate localized information for all supported language. It would be grate if you can help me out through your valid comments. Sreejith Nair [ My Articles ]
Hi To make the localized database according to user language. you have to put a flag column in every table in the database. that u will match when a user select the language and also at the time of insertion of data. According to me there is no such thing in asp.net on which u can set the localised from the database. for the webcontrols u can set the cultureinfo. pankaj
-
Hi To make the localized database according to user language. you have to put a flag column in every table in the database. that u will match when a user select the language and also at the time of insertion of data. According to me there is no such thing in asp.net on which u can set the localised from the database. for the webcontrols u can set the cultureinfo. pankaj
Let me do some home work:-D Sreejith Nair [ My Articles ]