Function CSPParam::operator []()
Description:
Retrieves a value of the parameter. Same as member function GetValue().
 |
Prototype:
const CSPString& operator [](unsigned long x) const;
Arguments:
- unsigned long x [IN]
The index of the selected value.
Return value:
Returns a reference to the selected value.
Remarks:
See member function GetValue()
Examples:
CSPString strItem = Request.Form( "items" )[ 0 ];
See also:
member functions GetValue(), GetCount()
|
|