上一页 1 ··· 4 5 6 7 8 9 下一页
摘要: 第一步:建立web api,添加unity.webapi。 第二步:在添加了该引用之后,在App_Start中会自动生成UnityConfig.cs文件 第三步:添加数据做测试 第四步:展示效果 阅读全文
posted @ 2017-07-04 17:32 WangJunZzz 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 依赖注入和控制反转是对同一件事情的不同描述,从某个方面讲,就是它们描述的角度不同。依赖注入是从应用程序的角度在描述,可以把依赖注入描述完整点:应用程序依赖容器创建并注入它所需要的外部资源;而控制反转是从容器的角度在描述,描述完整点:容器控制应用程序,由容器反向的向应用程序注入应用程序所需要的外部资源 阅读全文
posted @ 2017-07-04 09:31 WangJunZzz 阅读(2266) 评论(0) 推荐(0) 编辑
摘要: using NPOI.HSSF.UserModel; using NPOI.SS.UserModel; using NPOI.XSSF.UserModel; using System; using System.Collections.Generic; using System.Data; using System.Globalization; using System.IO; using Sy... 阅读全文
posted @ 2017-04-27 00:28 WangJunZzz 阅读(339) 评论(0) 推荐(0) 编辑
摘要: function chk() { var patrn = /^\d+(\.\d+)?$/; var result = true; $("input[type=text]").each(function () { if (!patrn.exec(this.value)) { ... 阅读全文
posted @ 2017-03-17 17:31 WangJunZzz 阅读(60080) 评论(0) 推荐(0) 编辑
摘要: 来源:http://www.lanhusoft.com/Article/323.html 阅读全文
posted @ 2017-03-16 15:58 WangJunZzz 阅读(322) 评论(0) 推荐(0) 编辑
摘要: HttpHelper模拟post和get请求 public class HttpHelper { /// <summary> /// 模拟post请求 /// </summary> /// <param name="url">url</param> /// <param name="data">数据 阅读全文
posted @ 2017-02-14 09:03 WangJunZzz 阅读(414) 评论(4) 推荐(0) 编辑
摘要: //1.微信对该URL有效性验证(GET) string token = ConfigurationManager.AppSettings["WeixinToken"];//从配置文件获取Token string echostr = context.Request.QueryString["echo 阅读全文
posted @ 2017-02-14 08:59 WangJunZzz 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 1. 创建用户 Create user 用户名 identified by “密码”; 例如:create user ghc_ez identified by “ghc_211”; 授权: grant connect,resource,dba to用户名; 例如:grant connect,resource,dba to ghc_ez; 2.创建所需表空间--注意创建表空间的位置(datafil... 阅读全文
posted @ 2016-12-25 22:27 WangJunZzz 阅读(354) 评论(0) 推荐(0) 编辑
摘要: public async Task ExportExcel(IList _list, string pId, string pfid, string fugid) { #region 绘制表头 string[] arr = { "序号", "姓名", "性别", "年龄", "联系电话", "随访医生", "最近一次随访", "... 阅读全文
posted @ 2016-10-23 11:41 WangJunZzz 阅读(522) 评论(0) 推荐(0) 编辑
摘要: 第一次接触win32api,刚开始的时候有点迷迷糊糊的。 Windows API 就是windows应用程序接口。 win api向上就是windows应用程序,向下就是windows操作系统核心。 刚开始的时候都是自己一步一步摸索,但是网上的东西都是一些 [DllImport("user32.dl 阅读全文
posted @ 2016-08-17 18:04 WangJunZzz 阅读(4635) 评论(8) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 下一页