Function CSPParam::GetValue()
Description:
Retrieves a value of the parameter.
 |
Prototype:
const CSPString& GetValue(unsigned long x) const;
Arguments:
- unsigned long x [IN]
The index of the selected value.
Return value:
Returns a reference of the selected value.
Remarks:
If ulIndex is out of range, a reference to an empty string is returned.
Examples:
CSPString strItem = Request.Form( "items" ).GetValue( 1 );
See also:
member functions GetCount(), GetName(), operator [] ()
|
|