validation to check the date greater and equal to the current date .
For that you can refer the code form article
Compare dates in dd/mm/yyyy format using ASP.Net CompareValidator
Remove ControlToCompare and instead ValueToCompare which you can set with current date in Page_Load
CompareValidator1.ValueToCompare = DateTime.Now.ToString("dd/MM/yyyy");
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.