I have a ReorderList control on an ASP.NET 2.0 web page. The ReorderList has an edit template and an insert template. These templates include TextBox controls that users can enter values for. Some of these textboxes only allow decimal values by use of a FilteredTextBoxExtender control, which is added dynamically via the OnDataBound() event, since the ID of the textbox controls changes as new items are added to the list.
Since doing this, I am getting an exception on every reorder. The exception I get states I am trying to convert a System.Decimal value to System.Int32. It seems to be thrown in the DoReorderInternal method of the ReorderList control, which I have inherited from to create my own custom ReorderList class. However, the exception is thrown when calling a delegate method, and I cannot step into that method's source to see where the problem occurs.
Would anyone have any suggestions as to how to troubleshoot this?
Would anyone be able to tell me where to download the source code for the ReorderList AJAX control, in C#?
Derrick Lau