I am working on a multilingual ASP.NET MVC application (MVC4).
I want to make my resource file strings to be editable at runtime without recompiling the appliaction and I have done it successfully but the changes are not reflected on UI, however the new updated value of a key are shown in .resx file when I observed .resx file with XML editor
The Changes are only reflected when I recompile the application.
How can I make it to reflect changes on UI without recompiling the application?
Thanks.