Hello,
The situation:
I have "Save" button on the page that saves data into database and it is AJAXified with loading panel. I have a "Next" button that causes page to postback without AJAX.
Creating a problem:
Click "Next" button while the page is still "loading ..." from the "Save" button.
Result:
In IE: page creates a new postback from "next" button, but data is stilll saved in databases. (Good)
In Firefox 3.0: Getting popup alert box with such message:
"Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 0"
After I click ok, page finishes "loading ..." than creates a postback from "next" button.
Question:
I know I can dynamically disable "next" button while in "loading.." state...
But I would like to found like if it is possible to disable this message on Firefox and make it work just like IE works?
Thank You
The situation:
I have "Save" button on the page that saves data into database and it is AJAXified with loading panel. I have a "Next" button that causes page to postback without AJAX.
Creating a problem:
Click "Next" button while the page is still "loading ..." from the "Save" button.
Result:
In IE: page creates a new postback from "next" button, but data is stilll saved in databases. (Good)
In Firefox 3.0: Getting popup alert box with such message:
"Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 0"
After I click ok, page finishes "loading ..." than creates a postback from "next" button.
Question:
I know I can dynamically disable "next" button while in "loading.." state...
But I would like to found like if it is possible to disable this message on Firefox and make it work just like IE works?
Thank You