$Web Cookie Name: Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
m (1 revision) |
||
Line 27: | Line 27: | ||
<ul> | <ul> | ||
<li> | <li><var>[[$Web_Cookie_Len]]</var> | ||
<li> | <li><var>[[$Web_Cookie_Parm]]</var> | ||
<li> | <li><var>[[$Web_Num_Cookie]]</var> | ||
<li> | <li><var>[[$Web_Set_Cookie]]</var> | ||
<li> | <li> | ||
<li> | <li><var>[[$Web_Get_Cookie_Lstr]]</var> | ||
<li> | <li><var>[[$Web_Set_Cookie_Lstr]]</var> | ||
</ul> | </ul> | ||
[[Category:Janus Web Server $functions|$Web_Cookie_Name]] | [[Category:Janus Web Server $functions|$Web_Cookie_Name]] |
Revision as of 20:24, 12 June 2012
<section begin="desc" />Name of cookie<section end="desc" />
$Web_Cookie_Name retrieves the name of a cookie.
Syntax
<section begin="syntax" /> %RC = $Web_Cookie_Name( cookie_number ) <section end="syntax" />
$Web_Cookie_Name takes a single argument and returns a string, or null if the number references a non-existing cookie.
cookie_number | The cookie number in the list of received cookies. |
---|
In the following code, the name of every cookie sent by a browser is placed into a string array.
%X = $Web_Num_Cookie FOR %Y FROM 1 TO %X %HDR_FIELD(%Y) = $Web_Cookie_Name(%Y) END FOR
See also: