InvalidOperationException: Stack empty

后端 未结 2 379
鱼传尺愫
鱼传尺愫 2021-01-05 02:55

my application was worked fine but suddenly it is stop working and give this error [InvalidOperationException: Stack empty.] System.ThrowHelper.ThrowInvalidOperationExcep

相关标签:
2条回答
  • 2021-01-05 03:16

    For me, it was the Brower Link. Disabling it worked for me. For more reference check out https://docs.microsoft.com/en-us/aspnet/visual-studio/overview/2013/using-browser-link

    0 讨论(0)
  • 2021-01-05 03:20

    I had the same problem, but its fixed now. Firstly I disabled PageInspector.

    <appSettings>
           <add key="PageInspector:ServerCodeMappingSupport" value="Disabled"/>
    </appSettings>

    After that I got another error which was related to ResolveUrl method, I removed method and fixed the problem and voila! its working perfectly. Finally, I enabled PageInspector by removing previous settings and still it works.

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