You wouldn't necessarily post to the server, nor would you do this continuously. Here's what I would do:
1. If you control the server, write a
vb script file that accesses the database and does whatever you need it to do. The code you need is similar to the classic ASP code you're already using. Then use Windows Scheduler on the server to execute this script file every X minutes.
2. If you don't control the server, write an ASP file that accesses the database and does whatever you need it to do. Save this file inside your web site. Then, on another server that you do control, write a
VB script that requests this page. Then use Windows Scheduler on the server to execute this
VB script file every X minutes. The script then in turn calls your classic ASP page which does the database work.
There are many other solutions available as well, including Scheduler controls for ASP.NET. However, I find option 1 the easiest to do. Rather than a
vb script file you can of course also use a .NET Command Line tool or any other type of app. I just mentioned
vb script as it enables you use your existing classic ASP skills.
Cheers,
Imar