Trying to do the following:
order.ExpirationDate =(DateTime) ( ExpMonth + "/" + ExpYear);
ExpMonth, Expyear are both ints.
|
|
|
|
|
|
|
This is going to be better for you:
|
||
|
|
|
Try creating a new DateTime using the constructor which takes month and year as parameters (it also takes a day, but you can default to 1) instead of casting a string, it's much cleaner and easier. |
||
|
|
|
|
Try this:
|
||
|
|
|
|
You need to use:
|
||
|
|