How can u handle Un Managed Code Exceptions in ASP.Net?
Answer Posted / bala.r
.NET handles errors through exception classes. COM handles
errors through 32-bit data types called HRESULTs. All of
the .NET exception classes include HResult properties that
map to COM HRESULT codes.
If an exception occurs in a .NET object, the exception is
automatically mapped to the appropriate HRESULT and
returned to COM. Similarly, if an exception occurs in a COM
object, the COM HRESULT is mapped to the appropriate
exception class, which is returned to .NET, where it can be
handled just like any other exception.
If you are creating your own .NET exception classes for use
with COM, be sure to set the class’s HResult property so
that the exception can be handled within COM.
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What is loop in asp.net?
From which base class all web forms are inherited?
What is the difference between page.registerclientscriptblock and page.registerstartupscript?
About CLR, reflection and assemblies?
How to count the number of objects present in a web page? How to count the number of radio buttons in a web page?
What is the importance of aspnet_isapi.dll, inetinfo.exe andaspnet_wp.exe in the page loading process.
Which dll handles the request of .aspx page?
Why will you usually create an aspnet user account in the database for an asp.net web application?
What are the differences between application object and session object?
What is a web api?
What are the features that make asp.net more used framework? : asp.net mvc
What is class and object in asp.net?
Describe how passport authentication works.
Define cookie.
How can we call webservices in Banking Applications? and where we are using it?