<% ' first create a recordset object set rs=Server.CreateObject("adodb.Recordset") ' next set up a connection string Set conn = Server.CreateObject ("ADODB.Connection") connStr = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & server.mappath("/db/repeat.mdb") ' open the connection Conn.Open connStr,"","" ' now set up a query for the database sqlstmt = "SELECT * from Area ORDER BY AreaID" ' execute query set rs=conn.execute(sqlstmt) %>

 

logo

Welcome to the RepeatOnline website


For more Information

Technical Help

Join us Today!

 

If you are

  • a medical representatives currently operating in the UK

And you would

  • like to eliminate time spent organising business lunches for your presentations

We offer you

  • a free and easy to use lunch ordering service
  • online credit card payment for orders or over the telephone
back to home page
login

HomePage For more Information Technical Help I'm a new User



logo
Enquiries@repeatonline.com
+ 44 1248 681 052

 

<% rs.close set rs=nothing conn.close set conn = nothing %>