Concatenate tag attribute value using Razor and a prefix

Viewed 2954

How do I do this in Razor (VB.NET):

<div class="some_prefix_@ViewBag.MyValue">

If @ViewBag.MyValue is "xxx", the output should be

<div class="some_prefix_xxx">
1 Answers
Related