How do I utilise this.
I do:
VB Code:
  1. Public Function ValidateFields(ByRef Data As Mowlem.Booking.BusinessRules.BookingData.BookingEditRow) As Boolean
  2.         If Data.AssetKey < 1 Then
  3.             Data.SetColumnError("AssetKey", "Required")
  4.         End If
  5.  
  6.         'Blah blah blah
  7.  
  8. End function
So I validate the row, and add errors to it.
How do i show these in the UI?
What I mean is, can .NET automatically bind these or something, or do i manually have to write code to handle and display these errors?

Woka