Function CSPParam::GetCount()
Description:
Retrieves the number of values contained in a parameter.
 |
Prototype:
unsigned long GetCount() const;
Arguments:
No arguments (void).
Return value:
Returns the number of values.
Remarks:
If returns 0 the user has not send any parameter with associated with this parameters name. Use operator () ( unsigned long ulIndex ) to get a value.
Examples:
unsigned long ulCount = Response.QueryString( "items" ).GetCount();
See also:
member functions GetValue(), operator () ()
|
|