FSN#51218 Resultset processing afbreken als de gebruiker venster sluit

svn path=/Website/branches/v2017.2/; revision=35993
This commit is contained in:
Jos Groot Lipman
2017-11-14 15:45:23 +00:00
parent 240b11fb75
commit f4dc5e9e74

View File

@@ -794,6 +794,12 @@ function __rsProcessResultset(processParams) // processParams wordt blind aan al
(cnt < S("qp_maxrows2") || isExcel) && // Naar excel altijd alle regels (meer dan S("qp_maxrows2")) weergeven.
!oRs.EOF; cnt++)
{
if (!Response.IsClientConnected)
{
__DoLog("Response.IsClientConnected false, Resultset aborted.", "#00FF00");
Response.End;
}
var oRsFlex = null;
if ((isPrinting || isExcel || showProperties) && this.printFlex)
{