http://stackoverflow.com/questions/4530871/does-razor-support-elseif
CSharp
@if (true) {
AlwaysDoStuff(); } else if (false) {
NeverDoThis(); }
Visual Basic
@If True ThenAlwaysDoStuff() ElseIf False ThenNeverDoThis() End If
http://stackoverflow.com/questions/4530871/does-razor-support-elseif
@if (true) {
AlwaysDoStuff(); } else if (false) {
NeverDoThis(); }
@If True ThenAlwaysDoStuff() ElseIf False ThenNeverDoThis() End If