上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: using RestSharp; using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System... 阅读全文
posted @ 2017-05-10 17:25 cclon 阅读(5209) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ZDWorkflow.Model; using ZDWorkflow.Common; using ZDWorkflow.Common.Extensions... 阅读全文
posted @ 2017-01-20 17:25 cclon 阅读(1293) 评论(0) 推荐(0) 编辑
摘要: DataTable dt = new DataTable(); var age=dt.Compute("avg(age)",""); var height =dt.Compute("avg(height)",""); DataTable.AsEnumerable().Average(x =>x.Fi 阅读全文
posted @ 2016-12-30 19:10 cclon 阅读(6150) 评论(0) 推荐(0) 编辑
摘要: 一、生成代理类 对于web service服务和wcf的webservice服务,我们都可以通过一个代理类来调用。 怎么写那个代理类呢?通过一个工具生成即可!!微软为我们提供了一个wsdl.exe的Web服务描述语言工具,wsdl.exe从 WSDL 协定文件、XSD 架构和 .discomap 发 阅读全文
posted @ 2016-11-25 17:18 cclon 阅读(496) 评论(0) 推荐(0) 编辑
摘要: 我们选VS中工具-库程序包管理器-程序包管理器控制台, 这时在VS底部会出现控制台 这时候我们要执行四个操作: 下载安装EF 到工程。PM> Install-Package EntityFramework 开启数据库迁移 PM> Enable-Migrations 添加实体改动对应的数据库改动PM> 阅读全文
posted @ 2016-11-10 11:09 cclon 阅读(1042) 评论(0) 推荐(0) 编辑
摘要: 程序执行会重复 用mysql很长时间,limit是分页的一个好工具, select * from table_a where num = 4 limit 1,10, select * from table_a where num = 4 limit 10,10, 今天突然发现有些数据怎么也不会出来 阅读全文
posted @ 2016-10-27 17:00 cclon 阅读(2677) 评论(0) 推荐(0) 编辑
摘要: 第一步 导出excel 去掉列头,设置文本里面格式 第二步 另存为.txt 第三步 打lazd.txt, 在另存为 保存utf-8格式文本 第四步 打开MySQL 界面 输入本地mysql密码 第五步 输入命令 说明 fields terminated by '\t' 指是txt文本里面字段之间分割 阅读全文
posted @ 2016-10-25 16:23 cclon 阅读(382) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Web; namespace App_Helper { public abstract class Ex... 阅读全文
posted @ 2016-09-07 18:24 cclon 阅读(197) 评论(0) 推荐(0) 编辑
摘要: aspx.net mvc 控制器使用 阅读全文
posted @ 2016-09-06 17:49 cclon 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 这样会自动在C:\Inetpub\wwwroot 会出现这个文件夹。 上述步骤都是在安装了 VS2010、MVC3.0和的电脑上操作的 接下来进行服务器的部署 :1. 安装Microsoft .net FrameWork 4.0安装包; 2. 安装ASP.NET MVC 3;3. 设置“Web扩展服 阅读全文
posted @ 2016-08-17 18:13 cclon 阅读(186) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页