Bill
Bill

Reputation: 2382

Multilingual Content Websites ASP.NET MVC 3

Resource Files are mostly used to enable multilingual websites. What about data stored in the database? What if some "reference data" like Drop Downs in a website need to be multilingual.

Is it enough storing an additional column for each data record specifying the language a record belongs to?

Upvotes: 2

Views: 797

Answers (1)

Pedro
Pedro

Reputation: 1124

Extending the ASP.NET 2.0 Resource-Provider Model has a sample implementation of a database resource provider. This, of course, if you want to stick with the .NET native resource manager model, something I would avoid as I'm not sure if it's flexible enough.

Upvotes: 1

Related Questions