dataPageSizedataPageSize*
*Contents  *Index  *Topic Contents
*Previous Topic: dataFormatAs
*Next Topic: dataSrc

dataPageSize

Description

Sets the number of records displayed in a table bound to a data source.

Syntax

object.dataPageSize

Remarks

Use the nextPage and previousPage methods to display the subsequent and previous page of records in the table.

The property can be set at run time. At design time it can be set through the dataPageSize attribute.

Example

In the following example, the intrinsic text box is bound to the customer name of the current row of the data source control with the ID "#customer_source". The row in the table will be repeated 10 times, the value specified by DATAPAGESIZE.

<TABLE DATASRC="#customer_source" DATAPAGESIZE=10> 
    <TR>
        <TD><INPUT TYPE=TEXTBOX DATAFLD="customer_name">
</TABLE>

Applies To

TABLE


Up Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.