使用 Jquery Ajax 将 DateTime 值传递给 ASMX webMethod
有人可以帮我调用签名如下所示的网络方法吗?
public float[] GetTotalUagePerDay(DateTime startDate, DateTime endDate, int[] type);
Can some one help me to make a call to the web method who's signature is shown below.
public float[] GetTotalUagePerDay(DateTime startDate, DateTime endDate, int[] type);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将字符串传递给 webmethod 并在服务器上运行 DateTime.Parse()
Pass a string to the webmethod and on the server run DateTime.Parse()