I added to my .net app in the Global.asax.cs file error trapping like so

 void Application_Error(object sender, EventArgs e)
    {
        HttpUnhandledException httpUnhandledException = new 
        HttpUnhandledException(Server.GetLastError().Message, Server.GetLastError());

  SystemFunctions.SendEmailWithErrors(httpUnhandledException.GetHtmlErrorMessage());
    }

When I run my app I get an Illegal Characters in Path exception in the Designer.Cs funciton below..

public OptionsEntities() : base("name=OptionsEntities", "OptionsEntities")
    {
        this.ContextOptions.LazyLoadingEnabled = true;
        OnContextCreated();
    }

If I just continue on the app keeps going. If I remove the code block from the Global.asax.cs, the error goes away. Any ideas on where this may be coming from??

link|improve this question
Can you test with removing each specific line in the Application_Error code block to see what it is, or is it the fact that Application_Error exists at all that causes the error? – Adam Dec 16 '11 at 4:36
the error crops up only when the Application_Error function is there. Like I said, if I remove that, there are no problems... – user1101065 Dec 18 '11 at 0:48
But does an empty Application_Error code block cause the error or just when you have the code inside it? – Adam Dec 18 '11 at 1:32
feedback

1 Answer

try to relpace "name=OptionsEntities",with "OptionsEntities" may be it help you

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.