Returns the value of a request parameter as a String , or null if the parameter does not exist. Request parameters are extra information sent with the request. For HTTP servlets, parameters are contained in the query string or posted form data. You should only use this m
(String name)
| 184 | * @see #getParameterValues |
| 185 | */ |
| 186 | String getParameter(String name); |
| 187 | |
| 188 | /** |
| 189 | * Returns an <code>Enumeration</code> of <code>String</code> objects containing the names of the parameters |
no outgoing calls