@wuiLinkButton(URL, [LABEL], [ATTRBUTES])

Inserts a link which looks similar to @wuiInputButton().

The following parameters are recognized:

URL

The location to jump to when the button is pressed.

[LABEL]

The label to be displayed (defaults to URL if omitted).

[ATTRBUTES]

Used if you need to specify any special attributes to the <a> tag.

Example of using the macro:

@wuiLinkButton("frame.html","Return To Contents","@htmlAttr("title","Go Back To The Beginning")")

Assuming the com.ccg.macros.at.All class is within your CLASSPATH and the config/html.at macros file has been generated (Hint: run make atmacros in the wui directory), a developer should be able to run the above example by copy/pasting from below:

[root@probe root]# java com.ccg.macros.at.All <<EOF
@include("config/html.at",,"d")
@wuiLinkButton("frame.html","Return To Contents","@htmlAttr("title","Go Back To The Beginning")")
EOF

This macro is defined as:

@htmlEntity("a","@fnb("@param(1)","@param(0)")","@htmlAttr("href","@param(0)")@htmlAttr("class","wuiInputButton")@param(2)")