Hello,
I am developing an ASP .Net MVC 3 application using C# and SQL Server 2005.
I am using also Entity Framework and Code First Method.
I have some editor fields (text box) which I want to allow only user to put only Numbers in its.
Example :
<div><%:Html.Label("Nombre de Passage :")%><%: Html.EditorFor(model=>model.Nbr_Passage)%></div>
How can I restrict numeric in this textbox above ?