Function CSPParamSet::GetParam()
Description:
Retrieves the requested client parameter by name.
 |
Prototype:
const CSPParam& GetParam(const CSPString& strName) const;
Arguments:
- const CSPString& strName [IN]
The name of the parameter.
Return value:
Returns a reference to the requested parameter.
Remarks:
You can also use the member function operator () ( const CSPString& ) to retrieve the parameter.
Examples:
CSPString strFParam = Request.Form.GetParam( "f_param" ); CSPString strQParam = Request.QueryString.GetParam( "q_param" )(0);
See also:
member function operator () ()
|
|