Category: ASP

See [ConnectToAccessDB]

<% dim objRS set objRS = Server.CreateObject("ADODB.recordset") objRS.Open "SELECT * FROM XX", conn if not objRS.eof and not objRS.bof then do until objRS.EOF response.write(objRS("xxx")) objRS.MoveNext loop end if objRS.close %>

 

Tags:

ASP

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.