I am working on a mvc application, there is a label for e.g. called "The count is 12 apples". Now I have to put the label in resource file, but the problem is that the no. 12 is dynamic and changes on selection of some other drop down using jquery.
The html code is:
<p>The count is <span>12</span> apples</p>
I can not have hard coded text in my app, hence need to put both "The count is" & "apples" in resource file, so my doubt is that do I need to have 2 values in resource file for this OR is there any other way I can tackle this problem i.e. avoid having 2 in resource file considering there is count in between which is dynamic.