Function CSPParamSet::GetParam()
Description:
Retrieves the requested client parameter by index.
 |
Prototype:
const CSPParam& GetParam(unsigned long ulIndex) const;
Arguments:
- unsigned long ulIndex [IN]
The index of the requested parameter.
Return value:
Returns a reference to the requested parameter.
Remarks:
You can also use the member function operator [] ( unsigned long x ) to retrieve the parameter.
Examples:
CSPString strFParamName = Request.Form.GetParam( 0 ).GetName(); CSPString strFParam = Request.Form.GetParam( 0 ).GetValue( 0 );
See also:
member function operator [] ()
|
|