Im working with ASP .NET VB and JQuery (lastest version) with UI (lastest version). I open a JQuery UI Dialog everytime a beginrequest began and I hide it everytime on endRequest.
So far so good, but I've a link to a aspx that generates and download a file, so when the file is finish or the downloaded is cancelled, the dialog never close. So how can i add an exception to that file to hide the dialog or something to call the dialog?
this is the code in js:
Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(showProgressDialog);
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(hideProgressDialog);
function showProgressDialog() {
$('#progressDialog').dialog('open');
}
function hideProgressDialog() {
$('#progressDialog').dialog('close');
}
thanks a lot and sorry for my english