'PreviousPage'、'PreviousPage.IsCrossPagePostBack''Page.previousPage'、page.titleを試しました
これにより、クライアントはこの行の後にページのレンダリングを停止します。
簡単な例
protected void Page_Load(object sender, EventArgs e)
{
response.write("I can see this");
string test = PreviousPage.IsCrossPagePostBack.toString(); //Any page call Causes client rendering to freeze
response.write("But i cant see this");
System.Windows.Forms.MessageBox.Show("However i can see this,proving that the server is still running the code");
}
誰かお願いします、何かアイデアはありますか?