The information in this article applies to:
SYMPTOMSWhen you manually add <FORM></FORM> tags to an Active Server Pages (ASP) page, then drag and drop a text box DTC (or any other form-related DTC) on your page, and enable the Scripting Object Model, your form does not return any values. CAUSEThe following dialog box appears when you drag and drop a textbox DTC (or any other form related design-time control (DTC) onto an Active Server Pages (ASP) page: The design-time control requires the Visual InterDev Scripting Object Model. Would you like to enable the Scripting Object Model for this page?When you select Yes it will automatically add the following two script blocks to your Active Server Pages (ASP) page (marked with dark gray background in Visual InterDev):
The first script block gets added between the <%@ Language=VBScript %> and
<HTML> tags, the second script block gets added between the </BODY> and
</HTML> tags.
When enabled, the Scripting Object Model wraps the entire page in an HTML form. Which means if you add (or have already added) a form to the page, your Web browser will ignore the nested form and any data within it. NOTE: Nested forms are not valid HTML, and therefore the form isn't processed properly when previewing it. RESOLUTIONRemove the form tags on the page that are not used by the Scripting Object Model. STATUSThis behavior is by design. MORE INFORMATIONSteps to Reproduce Behavior
Keywords : kbVisID600 kbGrpASP |
Last Reviewed: May 5, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |