iframe - это транспортный канал, на котором размещены сообщения формы, поэтому Atanas верен, вы должны остановить транспорт внутри iframe.
Вот способ сделать это в зависимости от браузера:
if (iframeObj.contentWindow.document.execCommand)
{ // IE browsers
iframeObj.contentWindow.document.execCommand('Stop');
}
else
{ // other browsers
iframeObj.contentWindow.stop();
}
// notify user upload was cancelled, remove spinner images, etc