I have a web project with some forms in it. Every user on my web project should get an empty form ready to fill for everyday.
Is there anyway to Create a simple empty form with only id, name, activity fields, all automatically done by server everyday in MVC?
It can be timer that watches system time and creates a new form when a new day beguns or it can be another trick that i cant even think of.
Just show me ways to create forms every new day automatically.
Implementing scheduled tasks in ASP.NET is hard. If your only goal is to create new rows in a database table, use a SQL Server Job (assuming you have SQL Server).
If it’s more complex than that (sending email, for example), you have a few options presented in the answers in the linked question. I would typically create a simple console application and schedule it with the Windows Task Scheduler, but it depends on the scope of the task.