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.
我正在使用Webdatechooser<<Infragistics control>>一个采用日期时间的列。我需要将输入的值(通过 Webdatechooser)转换为 dd-mmm-format。
Webdatechooser<<Infragistics control>>
我可以为此提供片段吗?
该值是一个 DateTime 对象,因此您可以使用该对象的 ToString 函数来生成所需的输出。
((DateTime)WebDateChooser1.Value).ToString("dd-MMM-yyyy");
应该这样做。