[RESOLVED] web page hanged during opend window more than once
hi,
Anyone one here encounter the same. I included my javascript function. Thanks!
function OpenWindow(url)
{
var winSettings = 'center:yes;resizable:no;help:no;status:no;dialogWidth:350px;dialogHeight:350px;statusbar:no';
var uniqueId = new Date();
var uniqueUrl = url + '&curdate=' + uniqueId.getTime();
frm = window.open(uniqueUrl,'',winSettings);
return false;
}
Re: web page hanged during opend window more than once
In case URL already include Parameter than igonore this post else try this ;)
Code:
function OpenWindow(url)
{
var winSettings = 'center:yes;resizable:no;help:no;status:no;dialogWidth:350px;dialogHeight:350px;statusbar:no';
var uniqueId = new Date();
var uniqueUrl = url + '?curdate=' + uniqueId.getTime();
frm = window.open(uniqueUrl,'',winSettings);
return false;
}
Re: web page hanged during opend window more than once
Yap I already have a parameter in the url field.
Re: web page hanged during opend window more than once
Get the uniqueUrl value and try browsing to it directly in a new window yourself. Does the page load slowly?
Re: web page hanged during opend window more than once
Thanks for helping guy. I figured out the cause. It's my control wrapped in updatepanel. So the solution is I removed all my ajax control control in the modal page. It works!