Closed GoogleCodeExporter closed 8 years ago
[deleted comment]
I added the following code to ERROR.CS to get past this error:
private static NameValueCollection CopyCollection(NameValueCollection collection)
{
if (collection == null )
return null;
try {
if (collection.Count == 0)
return null;
}
catch {
return null;
}
return new HttpValuesCollection(collection);
}
Pure butchery I know BUT it fixed my problem!!!!
Original comment by ought...@gmail.com
on 11 Sep 2008 at 8:37
Would it possible for you to send the stack trace? I see it in the screenshot
but
it's clipped. It seems the exception occurs deeper than in ELMAH.
Original comment by azizatif
on 13 Sep 2008 at 3:17
Original comment by azizatif
on 30 Sep 2008 at 10:57
Original comment by azizatif
on 9 Mar 2009 at 9:36
Original issue reported on code.google.com by
ought...@gmail.com
on 11 Sep 2008 at 8:25Attachments: