摘要: 打开DB Browser ——>NEW: 将connection URl 改成如下: jdbc:sqlserver://localhost:1433 阅读全文
posted @ 2018-12-24 13:54 提笔 阅读(531) 评论(0) 推荐(0) 编辑
摘要: exec sys.sp_readerrorlog 0,1,'listening' 端口 1433 阅读全文
posted @ 2018-12-24 11:41 提笔 阅读(158) 评论(0) 推荐(0) 编辑
摘要: Html: <table id="tb_hero"></table> Jquery 事件: $("#tb_hero").on("check.bs.table", function () { //点击radio触发事件 var arrselections = $("#tb_hero").bootstr 阅读全文
posted @ 2018-12-05 13:20 提笔 阅读(15238) 评论(0) 推荐(0) 编辑
摘要: $("#btn_delete").click(function () { var row = $("#tb_hero").bootstrapTable('getSelections'); var arrId = []; var ids = {}; for (var i = 0; i < row.le 阅读全文
posted @ 2018-11-30 11:06 提笔 阅读(1034) 评论(0) 推荐(0) 编辑
摘要: 1,添加select2 样式 参考(https://select2.org/ ) 2,Html: <select id="txtType" name="Type" class="form-control select2" multiple="multiple"> </select> 3,jquery 阅读全文
posted @ 2018-11-30 10:56 提笔 阅读(520) 评论(0) 推荐(0) 编辑
摘要: 允许访问数据库外站链接:打开防火墙 点击入站规则 新建规则 编写入站名称 阅读全文
posted @ 2018-11-28 10:58 提笔 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 保存数据:Session["User"] = Account; 获取数据:var user = Session["User"]; 阅读全文
posted @ 2018-11-26 14:34 提笔 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 通过ajax进行跳转: $.ajax({ url: "/Home/Login", type: "post", data: { Account: account, Password: password }, success: function (result) { if (result = "登录成功 阅读全文
posted @ 2018-11-22 10:10 提笔 阅读(1266) 评论(0) 推荐(0) 编辑