Two-way formatted data binding in ASP.NET
Two way data binding in ASP.NET is easy, just use the Bind expression and data will flow between your web controls and your data source flawlessly. Until that is, you try to use a format string
Bind("AmountCharged", "{0:C
While this displays just as you'd expect (e.g., $200), it doesn't do so well when you submit an edit that includes the same...
