Click here to Skip to main content
15,887,683 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want that when user enter in their culture like for ex french, then it should go to their respective culture just like save the text of the textbox.

help guys in solving problems i want different language in my website.
Posted

This article should get you going: Globalization and localization demystified in ASP.NET 2.0[^]
 
Share this answer
 
Comments
Vineet_2109 29-Jan-11 2:08am    
if someone writes in textbox which is in french and then that textbox text should be written in field that resource file contain....how can i do that .... that is dynamically....
Sandeep Mewara 29-Jan-11 2:18am    
Use AJAX to get resource based text. But then how are you planning to use resource file? You need to change the thread culture. I would suggest you to read on it and move stepwise.
Vineet_2109 29-Jan-11 2:42am    
okay as per your information that very true but still i think my question is not clear to you ..
i want if someone on my website write in hindi or any language it should be stored in my .resx file directly not manually ... getting my question ... i should not manually feed the data in my resource file .........
Sergey Alexandrovich Kryukov 29-Jan-11 22:58pm    
I think you do not understand something. There are three players in the implementation: first person created application, second one is an expert in some culture writing a resource in a particular culture (call it "translation"), third one is a user. The user should enter the desired culture. For the user, there are no resources, but should be a way to select a culture. If the culture is available, the proper "translation" of UI is shown, if not -- fallback mechanism leads to the closest available, all the way down to the neutral culture is there is nothing closer. This is your "dynamically". You cannot require that a resource is being created "automatically" because it's a work of a human expert. What's possible is adding "translations" one by one when the application is already deployed and is being used, not touching original application implementation.
--SA
Sandeep Mewara 29-Jan-11 23:55pm    
10!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900