字符串到日期时间的转换
当我输入值 25.12.2011
时,出现以下错误:
System.Web.Services.Protocols.SoapException: Server was unable to process request.
---> System.InvalidCastException: Conversion from string to type 'Date' is not valid.
When I enter the value 25.12.2011
, this error appears:
System.Web.Services.Protocols.SoapException: Server was unable to process request.
---> System.InvalidCastException: Conversion from string to type 'Date' is not valid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它可能需要不同格式的日期,例如 yyyy-mm-dd 或(假设美国格式)mm/dd/yyyy。
It's probably expecting the date in a different format, such as
yyyy-mm-dd
or (assuming american formatting)mm/dd/yyyy
.您可以执行 TryParseExact()
如果您想格式化为特定格式,请参阅String.Format
you can do TryParseExact()
If you want to format to particular format see String.Format