In Html 5, there is an new attribute on textbox call autofocus.
The problem is it is a boolean value (there or not there)
It should look something like :
<input name="a" value="" autofocus>
I try :
<%= Html.TextBox( "a", null, new { autofocus } ) %>
But, it's give me an error because I'm not setting a value to autofocus...
I know I can do it manually, but can I do it with Html.TextBox ?