cheers |
| santhosh kapa replied to divya rocks at 08-May-08 06:20 |
You can use this..
But I suggest you to do this in the Backend in your SP if at all you are using any for calculating purpose...
DateTime dt1 = <some date>; DateTime dt2 = <some other date>;
TimeSpan ts = dt1 - dt2;
int days = ts.Days;
|
|