Ask a Question related to ASP.NET General, Design and Development.
-
VSK #1
Global Error handling in Applicatio_Error() of Global.asax
Hi all,
For a web application if we are using web farm, and if i want to do Global
Error handling can i use Applicatio_Error() method in global.asax.
Now in this method i will call business object which will log the exception
details into database, file etc....... am not sure if there will be any
performance issues or any other issues in web farm , when many users get
exception at the same time and try to access the Applicatio_Error() method
at the same time......
If anyone has used please let me know an foreseen issues..........
Thanks
VSK
VSK Guest
-
global.asax
Hi all! I've created a simple aspx application and when I run it locally on my pc all works fine. If I move it on the web server I get the... -
C# error - Could not load type TGA.Global.asax
I am new to C# and have imported a C# application developed by another developer into my development box. I am getting an error that I cannot fix... -
Parser Error Message in Global.asax.cs
When I upload files to the server I get this error : "Parser Error Message: Could not load type 'YaddaYadda.Global'. Source Error: Line 1: ... -
What is Global.asax?
It's the class file definition code for the Session and Application events - if you have anything that should be done when a user first connects or... -
Global ASAX error
Sounds like references have been removed from your web.config file. Look in your web.config file under... -
Alvin Bruney #2
Re: Global Error handling in Applicatio_Error() of Global.asax
yes you can do this but you need to lock the logging mechanism when you
write to it and unlock it when you are done. the same concurrency rules
apply here
"VSK" <vskacct@hotmail.com> wrote in message
news:Ot9l7mPVDHA.2328@TK2MSFTNGP12.phx.gbl...Global> Hi all,
>
> For a web application if we are using web farm, and if i want to doexception> Error handling can i use Applicatio_Error() method in global.asax.
> Now in this method i will call business object which will log the> details into database, file etc....... am not sure if there will be any
> performance issues or any other issues in web farm , when many users get
> exception at the same time and try to access the Applicatio_Error() method
> at the same time......
>
> If anyone has used please let me know an foreseen issues..........
>
> Thanks
> VSK
>
>
>
Alvin Bruney Guest



Reply With Quote

