The information in this article applies to:
SYMPTOMSWhen you Browse an Active Server Pages (ASP) page created using Visual InterDev, the window_onload event does not fire. CAUSE
You have output in an event handler or navigate method prior to the <BODY> tag
being written to the browser.
RESOLUTIONTo avoid this problem, defer all HTML output until the content portion of the page. Use script only to set up state that is used to compose the page. If you need to output HTML prior to the content portion of the page, then you should set the <BODY> tag attributes programmatically using client-side code [for example, window.onload = "return window_onload()"]. STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed
at the beginning of this article. Additional query words:
Keywords : kbVisID600 kbVisID600bug kbGrpASP kbVS600sp3fix |
Last Reviewed: May 25, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |