I have a textbox to enter Date.
What should the code look like to check if the user's entered date is of future or of today?
I also want the users' to enter date in dd/mm/yyyy format.
The code will give an error if any of them fails.
|
I have a textbox to enter Date. What should the code look like to check if the user's entered date is of future or of today? I also want the users' to enter date in dd/mm/yyyy format. The code will give an error if any of them fails. |
||||
|
|
|
You can use the DateTime to do this comparison as well:
|
|||
|
|
|
use
from manual page so fill in the parameters and subtract
if it's greater than zero, it's in the future |
|||
|
|
|
||||
|
|