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">
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">