Questions tagged [ysod]
20 questions
62
votes
10 answers
How can I enable Assembly binding logging?
I'm getting, "Could not load file or assembly 'Bla' or one of its dependencies. An attempt was made to load a program with an incorrect format."
A portion of the detailed info says:
"WRN: Assembly binding logging is turned OFF.
To enable assembly…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
7
votes
1 answer
ASP.NET yellow screen of death - where does it get the stack trace from?
I have a remoting-type set up within my application where I avoid TargetInvocationExceptions and grab the inner exception. I invoke the internal PrepForRemoting method on the Exception class to preserve the stack trace from the invoked method.
This…

David Neale
- 16,498
- 6
- 59
- 85
5
votes
2 answers
httpErrors shows 500 error instead of YSOD on local machine
I am using httpErrors in my sites web.config to handle 404 errors. This was not working correctly until I added existingResponse="Replace" to the node but now I dont get any yellow screen of death errors on my local development machine.

skyfoot
- 20,629
- 8
- 49
- 71
3
votes
0 answers
Configuration file is not well-formed, Config source is blank
Sporadically my WebApi application stops working until i do a app pool recycle.
The site gets stuck with this YSOD error:
Detailed Error Information
Module: IIS Web Core
Notification: BeginRequest
Handler: Not yet determined
Error Code:…

felickz
- 4,292
- 3
- 33
- 37
2
votes
0 answers
can't get httpErrors to show yellow screen of death with details
I've looked at many posts about using httpErrors and I believe there's a deeper issue with my project, or at least my understanding.
We've recently moved from using customErrors to using HttpErrors instead.
The Custom error would show fine, but in…

edank
- 599
- 7
- 16
2
votes
1 answer
Haskell strongly typed data bases
In the yesod book on persistence, the following paragraph talks about "... store strongly typed Haskell data":
Some Haskellers have attempted a more revolutionary route: creating
Haskell specific data stores that allow one to easily store any
…

mrsteve
- 4,082
- 1
- 26
- 63
2
votes
1 answer
Trace.axd returns YSOD not custom error
This is officially driving me crazy...... I have a website on IIS7 running ASP.Net 3.5. Tracing is off and I have custom errors configured, however when I access www.mysite.com/trace.axd I receive a standard ASP.Net YSOD instead of my custom error…

Mr Joe
- 21
- 1
2
votes
3 answers
Preventing the yellow screen of death
I'm having a problem with asp.net request validation. I have a basic page with a search field and a button. If the user inputs some illegal characters in the search field and clicks the button then of course I can validate his input in JS and…

Wiizl
- 359
- 6
- 17
1
vote
1 answer
Weird error page after YSOD ASP.NET with Visual Studio built-in debugging server
Now that I am playing with NHibernate I am getting a lot more YSODs as I am learning it however I seem to get this error sometimesafter a YSOD:
This webpage is not available
The webpage at http://localhost:49497/ might be temporarily down or it may…

ryanzec
- 27,284
- 38
- 112
- 169
1
vote
1 answer
Introductory example on serving data from sqlite database via REST API with the yesod web frame work in haskell
I want a "keep it simple and stupid" (i.e., "make it as simple as possible but not simpler") way of serving data that is stored in a sqlite data base. In haskell I want to use the ysod web framework. Actually, as I am only severing data, I need to…

mrsteve
- 4,082
- 1
- 26
- 63
1
vote
3 answers
CS0103: The name 'rGrid' does not exist in the current context
I have an ASPX Page:
<%@ Page Language="C#" MasterPageFile="~/site.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="myProject.Presentation.Web.Default" src="Default.aspx.cs" %>
<%@ MasterType VirtualPath="~/site.Master"…

tsilb
- 7,977
- 13
- 71
- 98
1
vote
1 answer
Why is VisualStudio/Firefox giving me a YSOD from code in an excluded class?
I excluded a class from my project (right-click > "Exclude from Project"); the file dutifully vanished from the Solution Explorer. Yet, when I run the app, it YSODs with an error in that excluded file.
How do I tell Visual Studio and/or Firefox (the…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
1
vote
1 answer
ASP.NET - what the heck is causing this cast error
Have an asp.net app and am writing insert, update and delete operations for a details view
My insert works great, now I'm trying to do the update, but I'm getting YSOD when I press the update button. There's only one date on the form and that uses…

mark1234
- 1,110
- 2
- 24
- 41
1
vote
1 answer
Why is this comment causing a Parser Error?
When trying to open a particular page in an asp.net app, I get a YSOD with:
Server Error in '/CommonLoon' Application.
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
0
votes
1 answer
ELMAH YSOD in production
I've recently implemented ELMAH in one of our production apps. It's really been a rather easy implementation and it's working flawlessly. However, I'm noticing the YSOD in prod isn't as telling as it is in dev. The main reason being that in prod we…

abend
- 463
- 4
- 17