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
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 ?