> Hi,
>
>
> i want to store time is less than 1 minute time of
> current time.
>
>can any one help me.
If you create a Date object, getTime:
Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT
so 1 minute = 60000 milliseconds, so you can do a simple operation to know if you've to store or not the "time".
is this what you meant?