Hello,
I want to create web application on ASP.Net using c#
language on different language supported (i.e. English,Dutch,etc..),so
please help me and guide me that how can i do that,if possible please
provide me some reference code.
Thanks.
Loading
Niradhip ChakrabortyPosted May 27, 2009, 2:35 PM
You can have a culture settings in web.config and based on your settings you can play with your application
<system.web>
-- GLOBALIZATIONThis section sets the globalization settings of the application.
Use culture="en-US" for US
Use culture="en-GB" for UK
Use culture="en-AU" for AUS
--
> <globalization requestEncoding="utf-8" responseEncoding="utf-8" culture="en-GB" /> system.web>