ASP.NET MVC Multilingual Web Application
- by BobhatePradip
We are going to see how we can show localized content to your ASP.NET
MVC web application.
We will see mainly two approaches-
Approach 1: Using Static Pages
We can go for this approach only when we have few/limited static localized pages.
Approach 2: Using Dynamic page with localized data at runtime
We should go for this approach if we have large number of pages to show a data in localized format.
In this approach we can either use resource file or directly data from database.
For details about the this check this link
http://www.codeproject.com/KB/aspnet/ASP_NET_MVC_Multilingual.aspx
Here you can have code sample with explanation.