IIS crashes and restarts without dropping a mini-dump

后端 未结 3 955
隐瞒了意图╮
隐瞒了意图╮ 2021-01-24 00:20

I have a tough scenario I\'m trying to debug... On a web forms page, when I click submit, the web server hits some error and restarts the w3svc process.

I do not see any

3条回答
  •  囚心锁ツ
    2021-01-24 01:03

    I suspect that you make a loop call like

    public string sMyText
    {
       get {return sMyText;}
       set {sMyText = value;}
    } 
    

    and you call the sMyText

    or something like

    protected override void OnLoad(EventArgs e)
    {
      base.OnInit(e);
    }
    

    or something like

    Server.Transfer("TheSamePage.aspx");
    

    In this cases the crash is not call the minidump. Can you run the process explorer and see if your pool is eat the cpu until is crash ?

提交回复
热议问题