borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder

AndreaVB | Forum | News | Downloads | Register | Help | Member List | Statistics | Search | PM | Profile

Print This Topic
Previous Topic (Upload File)Next Topic (Detect internet connection) New Topic New Poll Post Reply
AndreaVB Forum : Internet Applications : ASP programming problem and need help
Poster Message
Afshin_Zavar
Level: Sage

Registered: 17-07-2003
Posts: 64

icon ASP programming problem and need help

hi all

this is a part of  asp file:

rs.movefirst()
While not rs.eof
  response.write  [ 'here, how can write Current Record number?]
     rs.moveNext()
wend  


[Edited by vbgen on 23-10-2003 at 02:47 AM GMT]

____________________________
Persia

22-10-2003 at 08:43 AM
View Profile Send Email to User Show All Posts Visit Homepage | Quote Reply
vbgen
Level: Moderator

Registered: 10-10-2002
Posts: 876
icon Re: ASP programming problem and need help

rs.movefirst()
While not rs.eof
  response.write  [ 'here, how can write Current Record number?]
     rs.moveNext()
wend  


if let's sayr the fieldname i CurrentNumber then

response.write rs.fields("CurrentNumber")

i think...  

____________________________
Been busy trying to take a second degree <--it's not working out...

22-10-2003 at 06:51 PM
View Profile Send Email to User Show All Posts | Quote Reply
narendrakk
Level: Scholar


Registered: 01-12-2003
Posts: 29
icon Re: ASP programming problem and need help

Hi There

Probably the answer is

rs.movefirst()
While not rs.eof
  response.write  rs.RecordSet.RecordCount
  rs.moveNext()
wend  

Enjoy !  

05-12-2003 at 03:23 PM
View Profile Send Email to User Show All Posts | Quote Reply
Massoud
Level: Guest

icon Re: ASP programming problem and need help


Try this :

rs.movefirst()
While not rs.eof
  response.write  rs.RecordSet.AbsolutePosition
  rs.moveNext()
wend  

Hope to solve your problem.  

20-05-2004 at 10:15 PM
| Quote Reply
AndreaVB Forum : Internet Applications : ASP programming problem and need help
Previous Topic (Upload File)Next Topic (Detect internet connection) New Topic New Poll Post Reply
Surf To:


Not Logged In? Username: Password: Lost your password?
Partners: Download Actual Software | Free Software Download
borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder