c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
vb.net

How to use try and catch in vb.net?

| | ASP , ASP-NET

Here I am going to describe how to use try catch in vb.net. In this try section write your logic and catch section receive(display) your exception use messagebox or write message.

Try

'Write your logic here

Catch ex As Exception

'Here your exception part

Write(ex.ToString)

End Try