2019年6月6日
摘要: C# 与java 加密互通 AES 加解密 https://www.cnblogs.com/suizhikuo/p/9565409.html https://blog.csdn.net/weixin_36751895/article/details/74060379 RSA 加解密 https://blog.csdn.net/thc1987/article/deta... 阅读全文
posted @ 2019-06-06 10:03 阳光秋天 阅读(136) 评论(0) 推荐(0) 编辑
  2019年1月14日
摘要: 1.学习视频: http://jspang.com/post/vueNav.html 2.npm安装详细教程 https://blog.csdn.net/zimushuang/article/details/79715679 阅读全文
posted @ 2019-01-14 14:47 阳光秋天 阅读(275) 评论(0) 推荐(0) 编辑
  2018年10月19日
摘要: @if (list != null && list.Count>0) { 申请表 预览 if (ViewBag.hascheck == 1) { ... 阅读全文
posted @ 2018-10-19 14:04 阳光秋天 阅读(9211) 评论(0) 推荐(0) 编辑
  2018年9月4日
摘要: /// /// 创建文件 /// /// /// /// /// private static void CreateFile(int p_posId, string p_posKey, string p_content, ReturnJsonCode p_jsonCode... 阅读全文
posted @ 2018-09-04 16:00 阳光秋天 阅读(145) 评论(0) 推荐(0) 编辑
  2018年6月28日
摘要: 坐标拾取:http://api.map.baidu.com/lbsapi/getpoint/index.html 跳转302链接或者是地址不便,显示某文件内容 阅读全文
posted @ 2018-06-28 09:50 阳光秋天 阅读(240) 评论(0) 推荐(0) 编辑
  2018年5月18日
摘要: /// /// 盖章 /// /// /// /// /// private ReturnJsonCode Sign(tbl_contract contract, string buyer, string seller) { Retu... 阅读全文
posted @ 2018-05-18 14:39 阳光秋天 阅读(238) 评论(0) 推荐(0) 编辑
  2018年5月10日
摘要: //读取 XmlDocument doc = new XmlDocument(); doc.Load(Server.MapPath("person.xml")); //加载Xml文件 XmlElement root = doc.DocumentElement; //获取根节点 XmlNodeList 阅读全文
posted @ 2018-05-10 16:01 阳光秋天 阅读(118) 评论(0) 推荐(0) 编辑
  2018年5月4日
摘要: https://www.cnblogs.com/yougmi/p/4616273.html https://jingyan.baidu.com/article/6c67b1d6ca06f02787bb1ed1.html( SQL Server 2008 R2如何开启数据库的远程连接 ) 本地数据库( 阅读全文
posted @ 2018-05-04 11:35 阳光秋天 阅读(8307) 评论(0) 推荐(0) 编辑
  2017年7月13日
摘要: http://www.cnblogs.com/cswuyg/p/4355948.html 阅读全文
posted @ 2017-07-13 14:04 阳光秋天 阅读(82) 评论(0) 推荐(0) 编辑
  2017年6月14日
摘要: 1. 上传文件 FileStream fsRead = new FileStream(fileurl, FileMode.Open); int fsLen = (int)fsRead.Length; byte[] heByte = new byte[fsLen]; fsRead.Read(heByte, 0, heBy... 阅读全文
posted @ 2017-06-14 13:53 阳光秋天 阅读(244) 评论(0) 推荐(0) 编辑