razor dynamic name of the class
<span class="abc">abc</span>
I want to have @postid as well in there so that the name of the class 开发者_StackOverflow社区is generated as abc123. How can i do that?
You can try this:
<span class="abc@(postid)">abc</span>
精彩评论