Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to access next record in MS Access Web Pages

Status
Not open for further replies.

AlexRezid

Programmer
Jul 17, 2003
27
FR
Everything is tell in the subject :)

I want to Access automaticaly the record number X where X is ask at load time.

I think i'll use prompt() for asking X,
Then, I'll do something like that :

Code:
<script language=javascript>
var i;
GoFirstRecord();
for (i=0;i<X;i++)
    GoNextRecord();
</script>

My problem is with those two functions: GoFirstRecord and GoNextRecord...

If Someone can help...

Thanks

Alex (alex-forums@ssji.net)

PS : excuse me for my bad english, but I'm not a native frensh speaker...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top