Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
NOTE: You may receive an error message if you copy the examples directly from this article and paste them into FrontPage. The angle brackets (< and >) may appear as escaped HTML code (< and >). To work around this behavior, paste the script into a blank Notepad document, and then copy it from Notepad before you paste it into FrontPage.
To work around this functionality, you can clear the form fields by using Dynamic HTML (DHTML). To do this, follow these steps:
- In FrontPage, open a server-based Web.
- Create a new, blank page.
- Insert a form on the page with multiple text fields:
- In FrontPage 2000
- On the Insert menu, point to Form, and then click One-Line Text Box.
- On the Insert menu, point to Form, and then click Scrolling Text Box.
- In FrontPage 2002
- On the Insert menu, point to Form, and then click Textbox.
- On the Insert menu, point to Form, and then click Text Area.
- Right-click the form, and then click Form Properties.
- Type MyForm for the form name, and then click OK.
- Switch to HTML view. Modify the <BODY> tag specifying the DHTML method to reset the form, like this:
<BODY onLoad="document.MyForm.reset();">
- Switch to Normal view. Save the page to your Web site.
When you submit the form in Microsoft Internet Explorer, and then click the
Back button on the confirmation page, you see a blank form.