Hello Everyone,
For my application, I am using MVC 5 along with the SQL server 2012.
In my application, most of the pages are bounded text from Resource.resx file like below
@Html.Label(Resources.Resource.first_name, htmlAttributes: new { @class = "control-label col-md-2" }) I have embedded the resource file name property with the label and it shows the resource name property value accordingly, like the above label show "First Name" on UI.
Now, I need to CRUD operation for that Resource.resx file. I want to give control to the client so that he/she can change the resource values accordingly.
Like all the data which is in Resource.resx file should be bounded as a grid on UI and by clicking on edit button on the respective row I can update it.
Please suggest.