The NAME="..." attribute of an <INPUT> element in a <FORM> can be used as a key to access the item as a property of the request object.
For example, a text filed can be created like this:
<INPUT NAME="MyNamedTextObject" TYPE="TEXT">
You can then access it as a property belonging to the response with this object and property reference:
response.MyNamedTextObject
Prev | Home | Next |
request object | Up | request.<urlExtension> |
JavaScript Programmer's Reference, Cliff Wootton Wrox Press (www.wrox.com) Join the Wrox JavaScript forum at p2p.wrox.com Please report problems to support@wrox.com © 2001 Wrox Press. All Rights Reserved. Terms and conditions. |