HttpStatus

Takes one parameter, Status

Description:

The HTTP Status line set here will be returned to the client. This is typically not needed, as the server will return "200 OK" providing any valid output was found.

Example:

    Rem 'Redirect after POST
        [Pull] Req.Path
        HttpStatus    "302"
        HttpHeader    "Location", ("/" & Req.Path)
    EndRem