随笔分类 - C#技术
C#技术
摘要:
阅读全文
摘要:The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine. 1.在用SQL SERVER 2005访问.xlsx文件(office2007&2010文件格式)时,必须用provider 'Micros
阅读全文
摘要:1.DateTime 转为Unix的long的时间戳 long orderTime = order.AddTime.ToUnixTimeStamp("Milliseconds"); long payTime = order.StartTime.Value.ToUnixTimeStamp("Milli
阅读全文
摘要:Http async / await 方式请求实例: 使用Task.Run(()=>{})方式执行
阅读全文
摘要:using Lemon.Common; using Lemon.WeChat.Model; using Lemon.WeChat.Services; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Senparc.Weixin.MP; using System; using System.Collections.Generic; ...
阅读全文
摘要:在网站开发中,如果有发布类似新闻的图文混排需求时,CKEditor不失为一个很好的选择,下载地址如下:http://ckeditor.com/download它的前身是FCKEditor,随着它的更新,上传图片的功能被分离出去了,现在如果需要实现上传图片,要么自己写代码,还有一种方法是使用CKFin...
阅读全文
摘要:1、接口using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace PlugDemo{ public interface IPlugToText { ...
阅读全文
摘要:服务端:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Te...
阅读全文
摘要:1、HTTP上传文件及传递参数 #region 6.0 上传多个文件和参数 /// /// HttpUploadFile /// /// /// /// /// /// public static string HttpUpl...
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 时间戳demo{ /* * Unix时间戳(Unix timestamp),或称Unix时间(Unix...
阅读全文
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
阅读全文
摘要:using System;using System.Collections;using System.Data;using System.Linq;using System.Web;using System.Web.Services;using System.Web.Services.Protoco...
阅读全文
摘要:using System;using System.Collections;using System.Configuration;using System.Data;using System.Linq;using System.Web;using System.Web.Security;usin...
阅读全文
摘要://获excel中多个sheet中的数据 /// /// 读取导入Excel文件内容 /// /// 文件路径(上传后) /// Excel中的列 名 /// 是否读取多个Sheet /// (out)消息提示...
阅读全文
摘要:using System;using System.Collections;using System.Configuration;using System.Data;using System.Linq;using System.Web;using System.Web.Security;using ...
阅读全文
摘要:public class HttpTools { public static string GetRequest(string url) { HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url); request.Me
阅读全文
摘要://服务器端//服务器端using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using S...
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;using System.Threading;using System.Globali...
阅读全文
摘要:#region 读取导入Excel数据 /// /// /// /// /// /// public DataSet ReadDataFromExcel(string filename, string fields) { D...
阅读全文