<netui:parameter> Tag

Writes a name/value pair to the URL or the parent tag.

Syntax

<netui:parameter
    name="name"
    value="value" />

Description

Writes a name/value pair to the URL or the parent tag. You can dynamically determine the value of the <netui:parameter> through the value attribute.

Attributes
name
Required: Yes  |   Supports runtime evaluation: Yes  |   Data bindable: No

The name of the parameter.
value
Required: Yes  |   Supports runtime evaluation: Yes  |   Data bindable:

The value of the parameter. May be a literal or a data binding expression.

 
Example

In this sample, the hyperlink is amended with the parameter q=Socrates

      <netui:anchor href="http://www.google.com/search">
          Search Google with the query "Socrates"
          <netui:parameter name="q" value="Socrates" />
      </netui:anchor>
The URL produced appears below:
      http://www.google.com/search?q=Socrates