Я пытаюсь вывести следующий html с помощью html helper в asp.net mvc 2:
<input type="text" id="Name" name="Name" value="" autofocus />
Я сейчас использую этот код:
<%= Html.TextBoxFor(x => x.Name) %>
и я попробовал
// results in <input ... autofocus="" />
<%= Html.TextBoxFor(x => x.Email, new { autofocus="" }) %>
// does not compile
<%= Html.TextBoxFor(x => x.Email, new { autofocus=null }) %>
Есть ли способ выполнить то, что я ищу, с помощью помощника HTML?