-1

My approach is to save all the label names, content, language and the page name on the database and retrieve it before every page load. Is this the right approach or can I do something more efficient. Assume I already have all the translated label names.

-- There would be frequent changes on the translations, so I prefer not to deploy the code all the time. So, resource file would be my last choice. (My understanding is that we would have to recompile the code everytime we change the .resx file, please correct me if im wrong)

Siddharth Dinesh
  • 345
  • 4
  • 13

2 Answers2

0

you can use Resource Files concept For Changing Label text

http://www.codedigest.com/posts/53/create-multi-language-website-in-aspnet-mvc---localization

  • Thank you but there would be frequent changes on the translations, so I prefer not to deploy the code all the time. So, resource file would be my last choice. (My understanding is that we would have to recompile the code everytime we change the .resx file, please correct me if im wrong) – Siddharth Dinesh Apr 09 '19 at 08:32