Hi,
I need to know how can I catch error message comming directily from my sql server.
For example:
I want the same result using try catch function of vb.net.
If I had some sql error message coming from server, It will be displayed in ex.message.
So I want after I edit some data in RadGrid, It display the same error on example above.
Thanks,
Allan.
I need to know how can I catch error message comming directily from my sql server.
For example:
I want the same result using try catch function of vb.net.
Try
'Some sql command
Catch ex As Exception
Label.Text = ex.Message
End Try
If I had some sql error message coming from server, It will be displayed in ex.message.
So I want after I edit some data in RadGrid, It display the same error on example above.
Thanks,
Allan.