Why Java Script slowly

  • Thread starter Thread starter Yuriy
  • Start date Start date
Y

Yuriy

Hello! I use a simple statement to call form
windowHandle=window.open(myform + '/?' + hdObj.id + "=" +
hdObj.value,'HouseholdMember', 'toolbar=no, location=no,
status=no, menubar=no, resizable=no, scrollbars=yes,
width=500, height=400');
In my form i put a couple dropdown controls and check
boxes.
form has extension .aspx. But it works so slowly(10 - 15
sec) when i download it. Do you know another way to open
form faster?
Thank you.
 
If it is the first time the form is loading, then this is normal because the
form is being compiled. After the first time it should go much faster as it
should be compiled for a good while until the server decides it hasn't been
used in a while and drops it from memory.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
Back
Top