I am not explaining myself well.
The code I entered in my last posting is straight out of your example. I have added no code to the example at all.
It comes from directory ...IdeaBlade Devforce\Learning Resources\100_Security\Samples\300SLV\CodeCs\
ASPNet Membership with Registration
It is part of the samples you installed on my C drive when DEvForce is being installed.
The code caught the error and caused the following line to be executed
throw new LoginException(LoginExceptionType.InvalidPassword, "Invalid password");
}
What I am asking is what does this code generate as a result?
I expected it to display a message on the 'View' and then exit normally.
Instead there was no display and the unhandled exception function(of the runtime in VS2008) caught the error and
terminated the program by stopping the execution and displaying the VS2008 error block.
I want to be able catch errors such as this and exit from the program normally. I expected this
code to do it and it didn't.
My question is how do I catch the error and exit using my own code for a normal program shutdown.
A wrong password should not cause the program to exit abnormally. It is.
As this is one of your examples I am hoping you understand this code better than me.
Hope that makes my question clearer.
Bruce
|