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.
我们如何使用 itextsharp 在 asp.net 中随时间创建 pdf 文件,因为我通过很短的时间它会创建一个异常我使用此代码作为文件名
filename = "Invoice" + _InvoiceNumber + DateTime.Now.ToShortTimeString() + ".pdf";
我需要在此代码中更改的内容我希望我的 pdf 文件名为
发票06-7.00AM
等待你的回复
指定日期时间格式“dd-H.mmtt”
在哪里
dd - Date H - Hours mm - Minutes tt - AM or PM
尝试类似:
filename = "Invoice" + _InvoiceNumber + DateTime.Now.ToString("dd-H.mmtt"); + ".pdf";