How do i set focus to a text box Html.TextBoxFor - mvc 2
- by Liado
Hi,
I'm trying to set focus on a text box which generated in the following way:
<%=Html.TextBoxFor(model = model.Email, new { style = "width:190px;Border:0px", maxsize = 190 })%
i tried to use javascript which didnt help much.
var txtBox = document.getElementById("Email");
if (txtBox != null) txtBox.focus();
Can someone help?
Thanks.