I'm trying to build up a bit of HTML using a mix of razor variables and static content.
Here is where I get stuck: I have a counter variable called @section_counter. I want to use that in the ID of the image tag I'm building. However unlike with <%%> notation I'm used to, I'm just not able to do what I need.
<img alt="section" id="@section_counter_Section" src=""..... etc
I need the id to look like 3_Section. However if I leave a space between the variable and the word "Section, the ID retains that space. If I use the "text" hint, I get this:
<img alt="section" id="1<text>_Section</text>" src=" in my generated HTML
What am I missing?