This property returns the values of the form elements sent using the POST method. (Form collection, Read
Value = Request.Form(FieldName)(Index).Property
Value = Request.Form.Item(FieldName)(Index).Property
It is recommended that you use the helper_js.csp file for cross
The variant value of the requested field.
Optional string value for the name of the field on the form you are trying to retrieve. If you do not specify this item, then one of the properties listed in Form Collection Properties must be specified. If you do specify this item, you may still specify the Property item, although in this case it will be one of the items defined in Form Field Properties.
Optional integer value for an index that enables you to select a particular
value from an form field that has multiple values. For example a combo box
that allows you to select multiple values. The index is one
Optionally specify one of the properties described in Form Collection Properties. Specify this if you have not included the FieldName. If you did include the FieldName, then this will be one of the properties described in Form Field Properties.
If you do not use any parameters when using this property, the server will return the entire HTTP request body without parsing it. Although there is no limit to the amount of data that can be transferred using this method, it is recommend that if the size of the data is greater than 100KB, you use the BinaryRead Method.
Forms belong to collections with Form Collection Properties. Forms also contain form fields with Form Field Properties.
Property | Description |
---|---|
Given a name or ordinal value returns a field from the form. (FormField) |
Crystal Decisions, Inc. http://www.crystaldecisions.com Support services: http://support.crystaldecisions.com |