Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
try
{
// some sql code here...
}
catch(SqlException se)
{
// Handle SQL Exception here...
MessageBox.Show("SQL Exception occurred");
}
catch(Exception e)
{
// Some non sql exception happened...
MessageBox.Show("Unknown Exception occurred");
}