I want to give different language option in my asp.net web application for the user to choose as he wishes.
Thanks In Advance
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
NitinPosted Mar 31, 2015, 1:44 AM
Store data in different languages in database and use langid column to ideentify which language you want to refer to. Use nvarchar(Max) datatype to store the data in different languages as it could take more memory for different language characters as compared to english. Use resource files in your application for different languages. Based on the user selection get the current language from the culture property and assign the new language.
Refer the below link to get the more details:
https://msdn.microsoft.com/en-us/library/bz9tc508%28v=vs.140%29.aspx