Hello,
I want to create an event remainder Which should pop up events before 1 week.
eg: if event is at 6th may 2013 then the pop up should be seen from 1 may 2013.
please hlp me.....
You will need to write a query to get events that will happen after 1 week using the current date.
SELECT * FROM Events WHERE DATEDIFF(DAY, GETDATE(), EventDate) = 7
And in Page_Load event of the page you need to call this query
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.