$Web IsIndex Parm Line: Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 7: Line 7:


Since isindex fields are more commonly called "URL parameters," you can use another synonym for this $function, [[$Web_URL_Parm_Line]].
Since isindex fields are more commonly called "URL parameters," you can use another synonym for this $function, [[$Web_URL_Parm_Line]].
$Web_IsIndex_Parm_Line takes three arguments and returns a string, or null for any error condition.
==Syntax==
==Syntax==
<p class="syntax"><section begin="syntax" /> %STRING = $WEB_ISINDEX_[PARM_]LINE( fieldname, occurrence, -
<p class="syntax"><section begin="syntax" /> %string = $WEB_ISINDEX_[PARM_]LINE( fieldname, occurrence, line_num)
line_num)
<section end="syntax" /></p>
<section end="syntax" /></p>


 
===Syntax terms===
$Web_IsIndex_Parm_Line takes three arguments and returns a string, or null for any error condition.
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>fieldname</th>
<tr><th>fieldname</th>
Line 23: Line 23:
</td></tr></table>
</td></tr></table>


==Usage notes==
<ul>
<li>A line is considered to be a block of text that is terminated by either an ASCII carriage return (X'0D') or a carriage return followed by a line feed (X'0A'). This is what is ordinarily sent by a browser to mark the end of each line of a textarea input field.
<li>For a discussion of isindex requests and data, see [[Janus Web Server application coding considerations#URL parameters or isindex data|"URL parameters or isindex data"]].
</ul>


 
==Examples==
A line is considered to be a block of text that is terminated by either an ASCII carriage return (X'0D') or a carriage return followed by a line feed (X'0A'). This is what is ordinarily sent by a browser to mark the end of each line of a textarea input field.
 
This example places each line of a textarea isindex field into an occurrence of a multiply occurring field.
This example places each line of a textarea isindex field into an occurrence of a multiply occurring field.
<p class="code">  
<p class="code">FOR 1 RECORD IN ORDER_RECORD
FOR 1 RECORD IN ORDER_RECORD
%NLINES = $Web_IsIndex_Num_Line('COMMENTS')
%NLINES = $Web_IsIndex_Num_Line('COMMENTS')
FOR %I FROM 1 TO %NLINES
FOR %I FROM 1 TO %NLINES
%COMMENT = $Web_IsIndex_Line('COMMENTS' , , %I)
%COMMENT = $Web_IsIndex_Line('COMMENTS' -
ADD COMMENT = %COMMENT
, , %I)
END FOR
ADD COMMENT = %COMMENT
END FOR
END FOR
END FOR
</p>
</p>


==See also==
==See also==

Revision as of 22:26, 12 June 2012

<section begin="desc" />Value of isindex field line<section end="desc" />


$Web_IsIndex_Parm_Line retrieves the value of a specific line in an isindex field. It is especially useful for textarea input fields. $Web_IsIndex_Line is a synonym for $Web_IsIndex_Parm_Line.

Since isindex fields are more commonly called "URL parameters," you can use another synonym for this $function, $Web_URL_Parm_Line. $Web_IsIndex_Parm_Line takes three arguments and returns a string, or null for any error condition.

Syntax

<section begin="syntax" /> %string = $WEB_ISINDEX_[PARM_]LINE( fieldname, occurrence, line_num) <section end="syntax" />

Syntax terms

fieldname The name of the isindex field, returned by $Web_IsIndex_Name. Required argument if occurrence not specified, otherwise optional.
occurrence The occurrence number of an isindex field, or the occurrence number of the isindex field matching 'fieldname', if fieldname is specified. Optional argument if fieldname is specified, otherwise it is required.
line_num Line number in the isindex field for which data is to be returned. This is an optional argument and defaults to 1.

Usage notes

  • A line is considered to be a block of text that is terminated by either an ASCII carriage return (X'0D') or a carriage return followed by a line feed (X'0A'). This is what is ordinarily sent by a browser to mark the end of each line of a textarea input field.
  • For a discussion of isindex requests and data, see "URL parameters or isindex data".

Examples

This example places each line of a textarea isindex field into an occurrence of a multiply occurring field.

FOR 1 RECORD IN ORDER_RECORD %NLINES = $Web_IsIndex_Num_Line('COMMENTS') FOR %I FROM 1 TO %NLINES %COMMENT = $Web_IsIndex_Line('COMMENTS' , , %I) ADD COMMENT = %COMMENT END FOR END FOR

See also