buildFormActionOnly

buildFormActionOnly(): String;

The buildFormActionOnly method of the JadeHTMLClass class returns the action attribute for a form tag. The URL is built by using the secure page setting and user settings for the machine name and virtual directory.

The code fragment in the following example shows the use of the buildFormActionOnly method.

str := buildFormActionOnly() & " method = post";

This example returns the following.

http:/wilbur1a/jade/jadehttp.dll?WebApp method = post

In this returned value, wilbur1a is the machine name, jade is the virtual directory, WebApp is the application name, and the page has been defined as non-secure. (See also the Application class setWebMachineName and setWebVirtualDirectory methods.)

2016.0.01 and higher