M
Mary
I want to be able to create a web form that contains textboxes, that I
can nagivate thru ie:first, next , previous and last. As well as
diplaying the number of records and what record I am currently on.
I tried using this to fill the form with the records for each textbox
and column:
Textbox.Text = ds.Tables("TableName").Rows(currentRow)("ColumnName").ToString
And this for locating the previous record:
If currentRow > 0 Then
currentRow = currentRow - 1
End If
But they do not seem to work...
can nagivate thru ie:first, next , previous and last. As well as
diplaying the number of records and what record I am currently on.
I tried using this to fill the form with the records for each textbox
and column:
Textbox.Text = ds.Tables("TableName").Rows(currentRow)("ColumnName").ToString
And this for locating the previous record:
If currentRow > 0 Then
currentRow = currentRow - 1
End If
But they do not seem to work...