ASP.NET MVC Multilingual Web Application

Posted by BobhatePradip on Geeks with Blogs See other posts from Geeks with Blogs or by BobhatePradip
Published on Fri, 10 Dec 2010 08:25:54 GMT Indexed on 2010/12/10 22:18 UTC
Read the original article Hit count: 139

Filed under:

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.

© Geeks with Blogs or respective owner