Method Html3():ref() Professional
Create HTML code for a hyperlink.
:ref( <cTitle> , ;
<cRefURL>|<aVars> , ;
[<cTargetFrame>] ) --> NIL
The return value of the method :ref() is always NIL.
If the parameter <aVars> is used then the corresponding variables are sent to the WAA gateway so that a Web application can be accessed via a hyper-text link without the need to display a submit button.
Example PRG code with parameter aVars:
aVars := { { "WAA_PACKAGE", "YOURDLL" }, ;
{ "WAA_FORM" , "YOURFUNC" } }
oHtml:ref( "Link to your package", aVars )
HTML output with parameter cRefUrl:
<a href="cRefURL">cTitle</a>
<a href="/cgi-bin/waa1gate.exe?NAME1=VALUE1&NAME2=VALUE2">cTitle</a>
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.