会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
与我码农之路
博客园
首页
新随笔
联系
订阅
管理
2016年12月7日
layer ifram 弹出框
摘要: 这个不是我写的,转载别人的,留着以后自己看
阅读全文
posted @ 2016-12-07 11:44 与我码农之路
阅读(3682)
评论(1)
推荐(0)
2016年11月30日
定时发邮件
摘要: 首先要在Global.asax写个定时方法 protected void Application_Start() { //在应用程序启动时运行的代码 //定义定时器 System.Timers.Timer myTimer = new System.Timers.Timer(180000);//3分钟
阅读全文
posted @ 2016-11-30 09:59 与我码农之路
阅读(893)
评论(0)
推荐(0)
二维码生成
摘要: 生成单个二维码 public JsonResult Create() { var msg = new JsonMessage(false, "添加失败"); var qmodel = new Qrcode() { QrcodeURL = "" }; new QrcodeService().AddEn
阅读全文
posted @ 2016-11-30 09:42 与我码农之路
阅读(410)
评论(0)
推荐(0)
文件或文件夹的压缩
摘要: 首先创建一个压缩类 public class ZipHelper { /// <summary> /// 压缩文件 /// </summary> /// <param name="sourceFilePath"></param> /// <param name="destinationZipFile
阅读全文
posted @ 2016-11-30 09:32 与我码农之路
阅读(401)
评论(0)
推荐(0)
excel 导入 与 导出
摘要: Excel导入 public ActionResult Excel(HttpPostedFileBase file) { HttpPostedFileBase files = file;//接收客户端传递过来的数据. try { if (files == null) { return Content
阅读全文
posted @ 2016-11-30 09:27 与我码农之路
阅读(611)
评论(0)
推荐(1)
公告