How can u handle Exceptions in Asp.Net?
Answers were Sorted based on User's Feedback
Answer / aadil
In ASP.NET, we have three types of Error Handling.
1. Structured Level Error Handling (try..catch..finally
block)
2. Page Level Error Handline
3. Application Level Error Handling.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / poornima p
In ASP.NET exception handling is achieved using the Try ?
Catch ? Finally block. All the three are ASP.NET keywords
and are used do exception handling. The try block encloses
the statements that might throw an exception whereas catch
block handles any exception if one exists. The finally
block can be used for doing any clean up process. Any
general ASP.NET exception forces the application to
terminate without allowing the code to continue executing,
resulting in an error page.
<Script runat=server>
Public Page_Load(sender As Object, e As EventArgs)
{
try
{
// Statements that are can cause exception
}
catch(Type x)
{
// Statements to handle exception
}
finally
{
// Statement to clean up
}
}
</Script>
Custorm Errors:
The default settings that is available in machine.config is
as follows
<customErrors mode="RemoteOnly"/>
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / guest
using system.exceptions namespace
Try
Piece of code ..
Catch objError as Exceptions
display objError.message
Finally
| Is This Answer Correct ? | 0 Yes | 0 No |
try
{
//set of code
}
catch(Exception1 e)
{
//error display
}
catch(Exception2 e)
{
//error display
}
finally
{
//compulsory execution will be done here
}
| Is This Answer Correct ? | 1 Yes | 1 No |
How do you access individual items of an Master Page
Which method is used to perform all validation at the page level?
0 Answers Sans Pareil IT Services,
What is cached data phone?
What is state management technique?
What is Dynamic Web and discuss its usage with the help of real life examples?
What is the difference between dynamic SGA and static SGA?
Why do we use sessions?
In SP has contains 10 query,By Using Dataset Object I need to fetch 8th query of records? How?
What is the namespace used to store the information about the user?s locale?
What are the navigation ways between pages available in ASP.NET?
What is considered a service provider?
How do you specify whether your data should be passed as Query string and Forms (Mainly about POST and GET)
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)