上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: GITHUB地址:https://github.com/BCode001/text-encoding 阅读全文
posted @ 2020-01-16 09:32 马永猛 阅读(1211) 评论(0) 推荐(0) 编辑
摘要: 1,新建 只能访问某一个表的只读用户。 --添加只允许访问指定表的用户: exec sp_addlogin '用户名','密码','默认数据库名' --添加到数据库 exec sp_grantdbaccess '用户名' --分配SELECT整表权限 GRANT SELECT ON 表名 TO [用 阅读全文
posted @ 2020-01-16 09:26 马永猛 阅读(1853) 评论(0) 推荐(0) 编辑
摘要: 当天地图加载完后页面大小变化之后,导致天地图显示不全出现截断的情况 解决方案: 在页面js中增加页面更新更改方法 window.onresize = function () { map.checkResize(); } 阅读全文
posted @ 2019-12-17 15:29 马永猛 阅读(1413) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <script src="shapefile.js"></script> <script> shapefile.open("http://localhost:8181/ 阅读全文
posted @ 2019-11-21 15:23 马永猛 阅读(6507) 评论(2) 推荐(0) 编辑
摘要: 1、先定义一个类 2、再启动类中指定 阅读全文
posted @ 2019-09-27 10:21 马永猛 阅读(1817) 评论(0) 推荐(0) 编辑
摘要: The type name or alias SqlServer could not be resolved.Please check your configuration file。。。。 检查一下Config文件中包含的dll再dubug文件夹中是否存在 阅读全文
posted @ 2019-09-27 10:09 马永猛 阅读(1126) 评论(0) 推荐(0) 编辑
摘要: 1、创建空白的控制台程序 2、添加两个NuGet包(Microsoft.AspNet.SignalR.SelfHost、Microsoft.Owin.Cors、Topshelf)Topshelf用于快捷创建windows服务 3、添加Myservice服务类 using Microsoft.AspN 阅读全文
posted @ 2019-08-09 16:18 马永猛 阅读(500) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BCode_Framework_ConsoleApp { class Program { static void... 阅读全文
posted @ 2019-07-31 16:04 马永猛 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 找到程序项目下Properties文件夹licenses.licx文件,然后右键选择删除就可以了,调试运行正常了 https://jingyan.baidu.com/article/b24f6c822592b686bfe5daac.html 阅读全文
posted @ 2019-07-31 14:00 马永猛 阅读(730) 评论(0) 推荐(0) 编辑
摘要: 运行结果为 【窗体初始化之前!】》【窗体初始化!】》【窗体Load!】 阅读全文
posted @ 2019-07-19 14:34 马永猛 阅读(1114) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页