What's the correct syntax for an HTML helper (in MVC2) to define an onblur handler where the textbox is generated with code like:
<%=Html.TextBox(
"ChooseOptions.AddCount" + order.ID,
(order.Count > 0) ? AddCount.ToString() : "",
new { @class = "{number: true} small-input" }
)
thx