.NET framework
115 pts.
0
Q:
.NET framework
Hi all,

please what can I do to resolve this problem??


unhandled exception error has occured in your application .NET frame work,  an attemt to compromise security. if click continue the application will attampt to continue and if u click quit the appln will quick.


please what could have caused this and can it be resolved.


cheers
ASKED: Oct 7 2009  11:10 AM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
1850 pts.
0
A:
 RATE THIS ANSWER
0
Click to Vote:
  •   0
  •  0
  • AddThis Social Bookmark Button
Sounds like something within the application is trying to do something that Windows really doesn't like. The application developer would need to review the code and figure out what what it's doing wrong.


------------- kccrosser
The classic way to get this error is to implement an error handler, but in the error handler the code does something which throws a further error.

try (<something>)
catch (
<do something here that fails>
)

Any code in an error handling block needs to be "bulletproof" to avoid these kinds of errors - beware of trying to do any database statements, including rollbacks, inside an error handling block.
Last Answered: Oct 8 2009  4:36 PM GMT by Kccrosser   1850 pts.
Latest Contributors: Mrdenny   46795 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



0