views:

522

answers:

2

I am trying to build an multilanguage application in asp.net MVC with the support to update the resource file online. I found lot of resources for asp.net web forms but could not find any example for MVC. Could any one tell me how can I do this. Thanks in advance.

+2  A: 

I use resource files with access modifier set to "public", so resources can be accessed from everewhere (controllers, views) by static properties:

<%= GlobalTexts.HelloWorld %>

For editing resx file I use Zeta resource editor.

PanJanek
This piece of software looks pretty cool and it's free! Thanks for the link.
Marc Climent
A: 

I am not looking for a desktop application for editing the resource file but I want to allow the user to edit the resource file from the admin section of my site. For classic web form http://blog.lavablast.com/post/2008/02/RESX-file-Web-Editor.aspx is very nice. But I want to implement the same concept in ASP.Net MVC.

Please don't post follow-up information as answers - edit the question or use the comments field on other answers.
bzlm