Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的数据库中,我为“StartDate”和“EndDate”存储了一个 DateTime 值,并且想知道如何使用这两个值创建一个倒数计时器?
我设法使用计时器来创建一个倒计时,但不是两个。有没有办法做到这一点?我目前正在使用 ASP.NET、C# 和 SQL。
我认为你可以使用 Ticks。将一些字符串放入数据库并保存刻度值。这几乎就像 guid 的 .. 它永远不会重复。像这样的东西:
private string ReturnUniqueTick() { return DateTime.Now.Ticks.ToString(); }
然后你在你的数据库中为这个字段创建一个索引,这将确保你有一个唯一的数字或格式化的字符串..
希望这有帮助。