$Web Form Action: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 1: Line 1:
{{DISPLAYTITLE:<var>$Web_Form_Action</var>.}
{{DISPLAYTITLE:$Web_Form_Action}}
<span class="pageSubtitle"><section begin="desc" />Return action URL<section end="desc" /></span>
<span class="pageSubtitle"><section begin="desc" />Return action URL<section end="desc" /></span>


<var>$Web_Form_Action</var> returns the relative URL of the current request.


<var>$Web_Form_Action</var> takes two arguments and returns a string.


<var><var>$Web_Form_Action</var>./var> returns the relative URL of the current request.
==Syntax==
==Syntax==
<p class="syntax"><section begin="syntax" /> %RC = <var>$Web_Form_Action</var>.pos, len)
<p class="syntax"><section begin="syntax" /> %rc = $Web_Form_Action(pos, len)
<section end="syntax" /></p>
<section end="syntax" /></p>


 
===Syntax terms===
<var><var>$Web_Form_Action</var>./var> takes two arguments and returns a string.
 
The first parameter is the starting position in the URL for the current request to be returned. This is an optional parameter, and it defaults to one, meaning that the current URL is returned starting at the first character.  
The first parameter is the starting position in the URL for the current request to be returned. This is an optional parameter, and it defaults to one, meaning that the current URL is returned starting at the first character.  


The second parameter is the maximum number of characters to be returned. This is an optional parameter and defaults to 255.  
The second parameter is the maximum number of characters to be returned. This is an optional parameter and defaults to 255.  


$WEB_FORM_ACTION, as the name might suggest, is most useful in generating the URL for the "action" attribute of the <form> tag in HTML. This is especially useful if the current URL includes ISINDEX data that might be relatively difficult to reconstruct otherwise. The following demonstrates how one might use the <var><var>$Web_Form_Action</var>./var> function in a form generated with the HTML statement.
==Usage notes==
<ul>
<li><var>$Web_Form_Action</var>, as the name might suggest, is most useful in generating the URL for the "action" attribute of the <form> tag in HTML. This is especially useful if the current URL includes ISINDEX data that might be relatively difficult to reconstruct otherwise. The following demonstrates how one might use the <var>$Web_Form_Action</var> function in a form generated with the HTML statement.


<p class="code"> HTML
<p class="code"> HTML
  <form method="POST" action="{<var>$Web_Form_Action</var>.">
  <form method="POST" action="{$Web_Form_Action}">
  <br>Name:
  <br>Name:
  <input size=20 type="text" name="name" value="{%NAME}">
  <input size=20 type="text" name="name" value="{%NAME}">
Line 32: Line 33:
</p>
</p>


 
If there is a possibility that the current relative URL along with the ISINDEX data is longer than 255 bytes, <var>$Web_Form_Action</var> should be used in a loop in conjunction with <var>$Web_Form_Action_Len</var> as demonstrated here:
If there is a possibility that the current relative URL along with the ISINDEX data is longer than 255 bytes, <var><var>$Web_Form_Action</var>./var> should be used in a loop in conjunction with <var>$Web_Form_Action</var>.Len as demonstrated here:
 
<p class="code"> PRINT '<form method="POST" action="' ...
<p class="code"> PRINT '<form method="POST" action="' ...
  FOR %I FROM 1 TO <var>$Web_Form_Action</var>.Len BY 255
  FOR %I FROM 1 TO $Web_Form_Action_Len BY 255
  PRINT <var>$Web_Form_Action</var>.%I) ...
  PRINT $Web_Form_Action(%I) ...
  END FOR
  END FOR
  PRINT '">'
  PRINT '">'
</p>
</p>
</ul>


The <var><var>$Web_Form_Action</var>./var> function is available with Version 6.0 and later of ''[[Sirius Mods]]''.
==See also==
 
<ul>
See also [[<var>$Web_Form_Action</var>.Len]] and [[$Web_Form_Done]].
<li><var>[[$Web_Form_Done]]</var>
</ul>


[[Category:Janus Web Server $functions|<var>$Web_Form_Action</var>.]
[[Category:Janus Web Server $functions|$Web_Form_Action]]

Revision as of 21:12, 6 June 2012

<section begin="desc" />Return action URL<section end="desc" />

$Web_Form_Action returns the relative URL of the current request.

$Web_Form_Action takes two arguments and returns a string.

Syntax

<section begin="syntax" /> %rc = $Web_Form_Action(pos, len) <section end="syntax" />

Syntax terms

The first parameter is the starting position in the URL for the current request to be returned. This is an optional parameter, and it defaults to one, meaning that the current URL is returned starting at the first character.

The second parameter is the maximum number of characters to be returned. This is an optional parameter and defaults to 255.

Usage notes

  • $Web_Form_Action, as the name might suggest, is most useful in generating the URL for the "action" attribute of the <form> tag in HTML. This is especially useful if the current URL includes ISINDEX data that might be relatively difficult to reconstruct otherwise. The following demonstrates how one might use the $Web_Form_Action function in a form generated with the HTML statement.

    HTML <form method="POST" action="{$Web_Form_Action}">
    Name: <input size=20 type="text" name="name" value="{%NAME}">
    Rank: <input size=12 type="text" name="rank" value="{%RANK}">
    Serial number: <input size=12 type="text" name="serno" value="{%SERNO}">
    <input type="submit" value="Update"> </form> END HTML

    If there is a possibility that the current relative URL along with the ISINDEX data is longer than 255 bytes, $Web_Form_Action should be used in a loop in conjunction with $Web_Form_Action_Len as demonstrated here:

    PRINT '<form method="POST" action="' ... FOR %I FROM 1 TO $Web_Form_Action_Len BY 255 PRINT $Web_Form_Action(%I) ... END FOR PRINT '">'

See also