L 
		
								
				
				
			
		Larry Bud
I can trap general errors on a datasouce.  For example, on an Inserted
event:
If e.Exception IsNot Nothing Then
e.ExceptionHandled = True
'do stuff here
End If
But how do I trap specific SQL errors on a databound control?
				
			event:
If e.Exception IsNot Nothing Then
e.ExceptionHandled = True
'do stuff here
End If
But how do I trap specific SQL errors on a databound control?