I have a loop, and I want each id to be fixed string + id.
Any ideas?
<span id='cat@MYID' /> does not work
<span id='cat@MYID' />
Use this (explicit code nugget):
<span id='cat@(MYID)' />
@string.Format("cat{0}", MYID)