Two-way formatted data binding in ASP.NET
...amountPaid = ParseDecimal(( string )args.NewValues[ "AmountPaid" ]); args.NewValues[ "AmountPaid" ] = amountPaid
When you handle this event, you're given a dictionary of old and new values, which appear to come directly from the controls (in my case, a TextBox was used to gather the updated data AmountPaid, so the type of object that I found...





