Tagged Questions

11
votes
5answers
1k views

How does the ASP.NET “Yellow Screen of Death” display code?

I thought .Net code gets compiled into MSIL, so I always wondered how do Yellow Screens produce the faulty code. If it's executing the compiled code, how is the compiler able to produce code from the ...
6
votes
2answers
553 views

YSOD Yellow Screen Of Death JavaScript RegExp - Syntax Error

I built up this regex at http://regextester.com to parse YSOD but VS is complaining about a syntax error. I am sure I am missing an escape somewhere but I am coming up blank. Here is is in original ...
3
votes
4answers
286 views

ASP.NET - Hacking the yellow screen of death

In some of my books that I've read, it is stated that it is good to hide yellow screens of death (obviously), but not only for the reason in that it is quite informal to users, but also because ...
3
votes
1answer
504 views

ASP.NET MVC: Weird characters in error page

Since I uploaded an updated version of an ASP.NET MVC 1 application to the server, the Yellow Screen of Death has changed to something like this: ...
3
votes
6answers
806 views

Can the ASP.NET Yellow Screen of Death (YSOD) be generated on demand or captured?

We'd like to just capture the YSOD output to use in an erorr reporting email, from a Global.asax error handler, for instance. Is there any way of leveraging the built-in ysod generator?
2
votes
1answer
1k views

How do you allow two DLL's with same namespace.class to exist in the same application?

Specifically, we are trying to upgrade our telerik controls to the latest version. Unfortunately, the old DLL's are so old that many of the control properties have changed vastly so we've decided to ...
0
votes
1answer
39 views

Customizing the Windows Identity Foundation (WIF) error messages (yellow screen of death)

WIF will send our users the Yellow Screen of Death whenever an error occurs. This can be something such as a token replay, or a old token being sent to the server as shown below: How do I ...
0
votes
0answers
78 views

ASP.NET yellow screen of death very slow to appear

I must have changed something somewhere accidentally because the standard yellow screen of death on my dev machine has been recently very slow. Every time I get a runtime exception, it takes almost ...
0
votes
1answer
573 views

HttpWebResponse.StatusCode isn't trapping 500 Errors

My Question: Does a HttpWebResponse.StatusCode detect Asp.Net errors? Mainly a yellow screen of death? Some Background: I am working on a simple c# console app that will test servers and services to ...
0
votes
1answer
49 views

SQLEXPRESS Failed to generate a user instance of SQL Server

I deployed an ASP.NET MVC app using MSDeploy and ran into this problem i tried every solution that i found over internet and i still can't get this working it's a small basic MVC 2 app that I built ...
0
votes
1answer
159 views

ASP.NET: Wrong Code Displayed in Crash Dump

So a webapp I've been working on broke, and I made some fixes... it still crashes, but in the YSOD it shows me the old code. I'm running this from the VS 2005 IDE. It won't hit any breakpoints, and it ...
0
votes
5answers
276 views

NullReferenceException on instanciated object?

This is a segment of code from an app I've inherited, a user got a Yellow screen of death "Object reference not set to an instance of an object" on the *bool l_Success* ... line. Now I'm 95% sure the ...
0
votes
6answers
227 views

Direct link from Yellow Screen to line in code

I've been looking for a while for this, and having been thinking about creating it myself, but hadn't got the feeling I knew the right point to start. I would like to have a link on the Yellow Screen ...