sure ;-)

a request parameter is a parameter sent from a client with a request, e.g.:
http://foo.com/tell-me?about=request-params

here 'about' is the request parameter which you can use for further
processing.


a request attribute is server-side and used for processing that request. if
you have several pieces of code dealing with one request, it's a good way to
transport information among those pieces needed for correct processing. such
information could be e.g. (validtion) error information set by an earlier
request processor which a later one uses to handle that error condition
(redirect to/produce an error page, etc.)

> -----Ursprungliche Nachricht-----
> Von: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Auftrag
> von Mark Lundquist
> Gesendet: Mittwoch, 10. Marz 2004 00:23
> An: [EMAIL PROTECTED]
> Betreff: FOM Request object
>
>
> OK, the Wiki talks about "request parameters" and "request attributes".
>   I don't think I know what a request attribute is... can somebody
> enlighten me?
> Thanks,
> Mark
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to