clearRequestAttr()

The j2eeLib.clearRequestAttr() system function removes the value that is associated with the specified key that you placed in request scope storage.

If a value is not found that matches the specified key, no error results.

You can place a value in request scope storage by using the j2eeLib.setRequestAttr() system function. You can retrieve the value with j2eeLib.getRequestAttr(). The value placed in the servlet's request storage is available as long as the servlet request is valid. Submitting a form from a page creates a new request.

  j2eeLib.clearRequestAttr(key STRING in)
key
Any value that is assignment compatible with the STRING type. See Assignment compatibility in EGL.

Feedback