I am currently working on setting up a system for my company using a classic ASP on IIS setup that is relying on data from a 3rd party API. Problem is the API responds extremely slow and all it sends is a large XML file or all data. Simple enough fix is to request is once a day and setup a database to store this info and have the app use the db as a source instead of the API.
I wrote the database filler code in an ASP file and just need to make sure it gets run every day. What is the best way to do this? I am not really familiar with best practices here, should I just have scheduled tasks open iexplorer pointing to the URL that runs the scraper or is there some kind of way to do it via the command line. Mostly worried that I am trying to translate how I would do this in PHP on LAMP to ASP/WISA instead of looking at this as its own issue.