摘要:
近期的开发要求使用 IIS 承载的 WCF 提供数据和实现操作,客户端使用 Ajax Json 和 WinForm,因此要在统一服务上同时绑定用于 Ajax 的 webHttpBinding 和用于 WinForm 的 wsHttpBinding。 下面假定服务名为 Itoro.WebCore.Web。 在创建服务时,选择“启用了 AJAX 的 WCF 服务”,然后在 web.conf... 阅读全文
摘要:
1、DateTime 数字型 以下是引用片段: system.DateTime currentTime=new system.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1... 阅读全文