I'm curious if it is possible to schedule my page, let's call it, Test.ashx to run, say at 2 am every day on IIS, using ASP.NET? (Pretty much what Cron Job does for PHP/Linux system.)
PS1. I need this page to perform a custom operation on the SQL Database table. (Note that I don't have direct access to IIS, or SQL Server itself. I'm writing a web app that needs to incorporate this functionality for a client.)
PS2. I program using C# if that matters.