$Web Hdr Name: Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
mNo edit summary |
||
Line 2: | Line 2: | ||
<span class="pageSubtitle"><section begin="desc" />Name of request header field<section end="desc" /></span> | <span class="pageSubtitle"><section begin="desc" />Name of request header field<section end="desc" /></span> | ||
$Web_Hdr_Name retrieves the name of a field in a request header. | |||
$Web_Hdr_Name takes a single argument and returns a string, or null if the number references a non-existing field. | |||
==Syntax== | ==Syntax== | ||
<p class="syntax"><section begin="syntax" /> %RC = $Web_Hdr_Name( field_number ) | <p class="syntax"><section begin="syntax" /> %RC = $Web_Hdr_Name( field_number ) | ||
<section end="syntax" /></p> | <section end="syntax" /></p> | ||
$Web_Hdr_Name is useful when writing generic server applications, when the server does not know what field name exists at a particular location in a request. | $Web_Hdr_Name is useful when writing generic server applications, when the server does not know what field name exists at a particular location in a request. | ||
<p class="code"> | <p class="code">* Get the number of header fields. | ||
%x = $Web_Num_Hdr | |||
* Load the header field names into an array. | |||
FOR %y FROM 1 TO %x | |||
%HDR_FIELD(%y) = $Web_Hdr_Name(%y) | |||
END FOR | |||
</p> | </p> | ||
==See also== | |||
See also | |||
<ul> | <ul> | ||
<li><var>[[$Web_Hdr_Len]]</var> | <li><var>[[$Web_Hdr_Len]]</var> | ||
<li><var>[[$Web_Hdr_Parm]]</var> | <li><var>[[$Web_Hdr_Parm]]</var> |
Revision as of 21:33, 12 June 2012
<section begin="desc" />Name of request header field<section end="desc" />
$Web_Hdr_Name retrieves the name of a field in a request header.
$Web_Hdr_Name takes a single argument and returns a string, or null if the number references a non-existing field.
Syntax
<section begin="syntax" /> %RC = $Web_Hdr_Name( field_number ) <section end="syntax" />
$Web_Hdr_Name is useful when writing generic server applications, when the server does not know what field name exists at a particular location in a request.
* Get the number of header fields. %x = $Web_Num_Hdr * Load the header field names into an array. FOR %y FROM 1 TO %x %HDR_FIELD(%y) = $Web_Hdr_Name(%y) END FOR