- 博客(18)
- 收藏
- 关注
转载 微信小程序——try {} catch (e) {}
程序开发中,编程人员经常要面对的是如何编写代码来响应错误事件的发生,即例外处理(exception handlers)。如果例外处理代码设计得周全,那么最终呈现给用户的就将是一个友好的界面。否则,就会让访问者对莫名的现象感到真正的“意外”。 一、什么是例外处理 当JavaScript程序在运行中发生了诸如数组索引越界、类型不匹配或者语法错误时,JavaScript解释器就会引发例外处...
2019-08-27 10:27:00 1492
转载 C# .net 填充无效,无法被移除 微信小程序解密失败的解决办法
微信小程序获取用户信息诸如unionId的时候需要解密,如果遇到偶然的解密失败(填充无效,无法被移除),原因很有可能是session_key错误,也是就你用作解密的session_key并不是微信用作加密的那个了,但是并不代表你的session_key已经失效.C#解密代码(亲测有效,可以直接复制使用) 1 /// <summary>...
2019-04-25 17:42:00 810
转载 WebService常用接口链接(很全面,值得一看)
天气预报Web服务,数据来源于中国气象局Endpoint :http://www.webxml.com.cn/WebServices/WeatherWebService.asmxDisco:http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?discoWSDL :http://www.webxml....
2018-07-17 16:24:00 252
转载 连接Redis_五种数据格式
前面我们已经准备成功开启Redis服务,其端口号为6379,接下来我们就看看如何使用C#语言来操作Redis。就如MongoDB一样,要操作Redis服务,自然就需要下载C#的客户端,这里通过Nuget下载了“ServiceStack.Redis”客户端,引入成功之后,就可以使用C#来对Redis服务进行操作了。由于Redis一般是用来作为缓存的,也就是一般我们把一些不经常改变的数据...
2018-07-02 14:39:00 135
转载 Httpclient代码
/// <summary> /// 显示 /// </summary> /// <returns></returns> public ActionResult get() { Uri url = new Uri("http://localhost:...
2017-11-21 20:44:00 123
转载 登录的一些简单代码,说明
登录的界面样式Ajax的登录控制器的传值转载于:https://www.cnblogs.com/shenghuotaiai/p/7871557.html
2017-11-21 09:12:00 160
转载 MVCAPi Httpclient
APi配制文件删除修改api显示和命名空间新增转载于:https://www.cnblogs.com/shenghuotaiai/p/7867996.html
2017-11-20 19:59:00 85
转载 添加
/// <summary> /// 添加 /// </summary> /// <param name="str"></param> /// <returns></returns> public ActionResult ...
2017-11-20 08:32:00 99
转载 递归算法,压缩
public static int Sunfa(int i) { int result = 0; if (i > 0) { if (1 >= i || i <= 2) { result = 1...
2017-11-14 19:30:00 150
转载 导入
public ActionResult daoru(HttpPostedFileBase ExcFile) { HttpPostedFileBase file = Request.Files["ExcFile"]; Stream stre = file.InputStream; ...
2017-11-13 20:03:00 94
转载 导出
public ActionResult daochu() { var dt = bll.showlist(); if (dt != null || dt.Count > 0) { HSSFWorkbook book = new HSSFWorkbook(); ...
2017-11-13 19:57:00 66
转载 mvc文件下载
public ActionResult xiazai(int id) { DataTable dt = bll.chaxun(id); //获取文件名字 var filename = dt.Rows[0]["SCName"]; //完整路径 var newname...
2017-11-13 19:55:00 67
转载 上传文件
/// <summary> /// 添加 /// </summary> /// <returns></returns> public ActionResult add() { return View(); } ...
2017-11-13 19:53:00 77
转载 文字水印,上传
if (ExcFile == null) { return View(); } string strename = Server.MapPath("/EXCEL/"); if (!Directory.Exists(strename)) { ...
2017-11-13 19:47:00 64
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人