InfoCenter Home >
4: Developing applications >
4.2: Building Web applications >
4.2.2: Developing JSP files >
4.2.2.3: Overview of JSP file content >
4.2.2.3.7: IBM extensions to JSP syntax >
4.2.2.3.7.1: JSP syntax: Tags for variable data >
4.2.2.3.7.1.2: JSP syntax: <tsx:repeat> tag syntax
4.2.2.3.7.1.2: JSP syntax: <tsx:repeat> tag syntax
<tsx:repeat index=name start="starting_index" end="ending_index">
</tsx:repeat>
where:
- index
An optional name used to identify the index of this repeat block.
The value is case-sensitive and its scope is the JSP file.
- start
An optional starting index value for this repeat block. The default
is 0.
- end
An optional ending index value for this repeat block. The maximum
value is 2,147,483,647. If the value of the end attribute is less than
the value of the start attribute, the end attribute is ignored.
|
|