umbraco.library:RequestForm(key) gets form field values sent to a page as a result of a <form method="post">.
umbraco.library:RequestQueryString(key) gets form field values sent to a page as a result of a <form method="get">.
etc. for cookies and session variables
umbraco.library:Request(key) looks up the specified key from all these sources. That makes it easy to handle form posts and gets without having to change your xslt even if you later decide to change for form's method=.
umbraco.library:Request('String key') - umbraco v4
What does it do?
And how does one use it?
Which commands does it accept?
umbraco.library:RequestForm(key) gets form field values sent to a page as a result of a <form method="post">.
umbraco.library:RequestQueryString(key) gets form field values sent to a page as a result of a <form method="get">.
etc. for cookies and session variables
umbraco.library:Request(key) looks up the specified key from all these sources. That makes it easy to handle form posts and gets without having to change your xslt even if you later decide to change for form's method=.
Make sense?
cheers,
doug.
is working on a reply...