Retrieves a parameter passed to the current page.
PSDocumentClass object
psDocument.GetParam( argvar )
Argument |
Description |
---|---|
argvar |
The name of a parameter passed to the current page |
String. Returns the value of the specified parameter.
At runtime, GetParam calls the getParameter method on the request object.
The following code retrieves the value of the “EmpID” parameter:
empid = psDocument.GetParam("EmpID");