0

私は現在このコードを持っています

@if(true) { <text> <td class="add"></td> </text> } else { <text> <td class="remove"></td> </text> }

こんな感じに切り替えたい

<td> @if(true) { <text> @class="add" </text> } else { <text> @class="remove" </text> }</td>

これが正しいかどうか、または正しい構文かどうかはわかりません

4

1 に答える 1

0
@functions {
    object getAttributes(bool val)
    {
        if (val)
        {
            return new {@class="add"};
        }
        return new { @class="remove"};
    }
}

<td>
@Html.TextBoxFor(model => model.FirstName,@getAttributes(style))   
@getAttributes(style)
<td>
于 2013-01-28T23:15:59.343 に答える