PK
Prem Kumar D
Syncfusion Team
July 1, 2010 04:07 PM UTC
Hi Dennis,
Thanks for using Syncfusion products
With regard to your query, you can follow the code below to set the properties
[Controller]
public ActionResult Index()
{
NumericTextBoxModel myModel = new NumericTextBoxModel();
myModel.MinValue = 10;
myModel.MaxValue = 20;
ViewData["myNumeric"] = myModel;
return View();
}
[ASPX]
<%=Html.NumericTextBox("myNumeric")%>
Note:The id of the Numeric textbox should match with the ViewData key
Please get back to us for any further queries
Regards,
Premkumar D