Server Error in '/' Application. ASP.NET

前端 未结 14 1972
死守一世寂寞
死守一世寂寞 2020-12-02 15:00

Greeting,

I developed a website using ASP.Net 3.5 and C#. It is working good with Visual Stdio 2010. I uploaded my website to my domain under the public folder.

相关标签:
14条回答
  • 2020-12-02 15:31

    This wont necessarily fix the problem...but it will tell you what the real problem is.
    Its currently trying to use a custom error page that doesn't exist.
    If you add this line to Web.config (under system.web tag) it should give you the real error.

    <system.web>
        <!-- added line -->
        <customErrors mode="Off"/>
        <!-- added  line -->
    </system.web>
    
    0 讨论(0)
  • 2020-12-02 15:32

    I have the same issue, my application was running on amazon vps, lately i found that bin folder had multiple copies of dll's ... After removing those copies of dlls like entityframework(copy1).dll, errors were gone.... May be some one will get help...cheers

    0 讨论(0)
提交回复
热议问题