Exception handling
Answers were Sorted based on User's Feedback
Answer / alb.shah
"An exception handler is a piece of code which will be
called when an exception occurs."
.NET Framework provides several classes to work with
exceptions. The keywords try, catch are used to handle
exceptions in .NET. You have to put the code (that can
cause an exception) in a try block. If an exception occurs
at any line of code inside a try block, the control of
execution will be transfered to the code inside the catch
block.
If any statement within the try block raises an exception,
the control of execution will be transfered to the first
line within the catch block. You can write the error
handling code in the catch block, like recording the error
message into a log file, sending an email to the
administrator about the problem occurred, showing an
appropriate error message to the user etc.
You can optionally use a 'finally' block along with the try-
catch. The 'finally' block is guaranteed to be executed
even if there is an exception.
If an exception is not 'handled' in code, the application
will crash and user will see an ugly message. Instead, you
can catch the exception, log the errors and show a friendly
message to the user.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / pavan
Yes. Multiple catch blocks may be put in a try block. See
code example below, to see multiple catch blocks being used
in C#.
class ClassA
{
public static void Main()
{
int y = 0;
try
{
val = 100/y;
Console.WriteLine("Line not executed");
}
catch(DivideByZeroException ex)
{
Console.WriteLine("DivideByZeroException" );
}
catch(Exception ex)
{
Console.WritLine("Some Exception" );
}
finally
{
Console.WriteLine("This Finally Line gets executed always");
}
Console.WriteLine("Result is {0}",val);
}
}
Read more:
http://discuss.itacumens.com/index.php?topic=17579.0#ixzz12vqW9paZ
... · ADO works with connected data. This
means ...
... when you access data, such as viewing and updating
data, it is real-time, with a ...
... being used all the time.
ADO.NET supports disconnected architecture. ...
... you access data, ADO.NET makes a copy of the data using
XML. ...
... make any requested updates. This makes ADO.NET
efficient to use for Web ...
... .
· ADO has one main object that is used to ...
... to create a new set of records. With ADO.NET, you have
various objects that ...
... relational model of your database.
· ADO allows you to create client-side ...
... only, whereas ADO.NET gives you the choice of using ...
... -side or server-side cursors. Whereas ADO allows you to
persist records in XML ...
... , ADO.NET allows you to manipulate data using. ...
Read more:
http://discuss.itacumens.com/index.php?action=search2#ixzz12w06GrN6
The DataAdapter object
plays the middleman between DataSet and database.
The DataSet represents a rich subset of the entire database,
cached on your machine without a continuous connection to
the database. The DataSet is comrised of DataTable objects
as well as Datarelation objects.
Is This Answer Correct ? | 0 Yes | 0 No |
What are client activated objects?
Define state managenent?Descibe state managenent technique which maintain the information at server site focusing it IDS features and limitations?
Where code pages are used?
What are the various authentication mechanisms in ASP.NET ?
1 Answers Digital GlobalSoft, Satyam,
What is the difference between user control and custom control?
if you disable view state of a textbox will it maintain data during postbacks.if yes reason
9 Answers FactorH, Jindal, Oxi Infotech,
What is the difference between runtime version and version?
What are the disadvantages of asp.net?
What are the asp.net server side objects?
What is the use of placeholder control?
How to make sure that contents of an updatepanel update only when a partial postback takes place (and not on a full postback)?
What is ISAPI?