Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My asp.net webforms app was working fine until this morning. Now it throws this error?? The DoThis is on the same class so should work?

I have a generic handler which contains:

public class MyHandler: IHttpHandler
{
    public void Processrequest(HttpContext context)
    {
        switch (somepage)
        {
            case "page1.aspx"
                this.DoThis(); // throws error now System.MissingMethodException: Method not found?

        }
    }

    public void DoThis()
    {
    //
    }
}
share|improve this question
can you post some more code, because this code is not valid. – sound Nov 9 '11 at 0:37
What is somepage? As 'sound' noted, this code isn't valid. Please give us a complete code snippet that demonstrates the problem. – Amy Nov 9 '11 at 2:11

3 Answers

up vote 18 down vote accepted

This is a problem which can occour when there is an old version of a DLL still lingering somewhere around. Make sure that the latest assemblies are deployed and no duplicated older assemblies are hiding in certain folders. Your best bet would be to delete every built item (CTRL + A, Delete :)) and rebuild/redeploy the entire solution.

share|improve this answer
3  
In particular, be sure an old version is not in the GAC. – ladenedge Aug 4 '12 at 2:40

I had this happen to me with a file referenced in the same assembly, not a separate dll. Once I excluded the file from the project and then included it again, everything worked fine.

share|improve this answer
+1 same problem – Matthew Lock Sep 6 '12 at 23:36

I had a similar scenario where I was getting this same exception being thrown. I had two projects in my web application solution, named, for sake of example, DAL and DAL.CustSpec. The DAL project had a method named Method1, but DAL.CustSpec did not. My main project had a reference to the DAL project and also a reference to another project named AnotherProj. My main project made a call to Method1. The AnotherProj project had a reference to the DAL.CustSpec project, and not the DAL project. The Build configuration had both the DAL and DAL.CustSpec projects configured to be built. After everything was built, my web application project had the AnotherProj and DAL assemblies in its Bin folder. However, when I ran the website, the Temporary ASP.NET folder for the website had the DAL.CustSpec assembly in its files and not the DAL assembly, for some reason. Of course, when I ran the part that called Method1, I received a "Method not found" error.

What I had to do to fix this error was to change the reference in the AnotherProj project from DAL.CustSpec to just DAL, deleted all the files in the Temporary ASP.NET Files folder, and then reran the website. After that, everything started working. I also made sure that the DAL.CustSpec project was not being built by unchecking it in the Build Configuration.

I thought I would share this in case it helps someone else in the future.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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