08 2020 档案

摘要:修改安装.net桌面开发、windows平台开发 阅读全文
posted @ 2020-08-27 16:51 BloggerSb 阅读(1310) 评论(0) 推荐(0) 编辑
摘要:SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO Create FUNCTION [dbo].[F_Split] ( @SplitString nvarchar(max), --源字符串 @Separator nvarchar(10)=' ' --分隔 阅读全文
posted @ 2020-08-25 15:43 BloggerSb 阅读(778) 评论(0) 推荐(0) 编辑
摘要:1.使用默认option再隐藏此选项 <select> <option value='' disabled selected style='display:none;'>Please Choose</option> <option value='0'>Open when powered (most 阅读全文
posted @ 2020-08-24 17:40 BloggerSb 阅读(1136) 评论(0) 推荐(0) 编辑
摘要:workbook.Write(ms) 生成的 MemoryStream 后,使用了 ms.GetBuffer() 返回文件内容,导致生成的 Excel 文件结尾处有大量的 00(空字节),改为 ms.ToArray() 即可得到正常的文件了。 阅读全文
posted @ 2020-08-13 09:45 BloggerSb 阅读(1068) 评论(0) 推荐(0) 编辑
摘要:@using (Html.BeginForm("Register", "Account", new { sourceType = Request.QueryString["sourceType"] },FormMethod.Post)) http://localhost:7294/ccount/Re 阅读全文
posted @ 2020-08-13 09:38 BloggerSb 阅读(326) 评论(0) 推荐(0) 编辑
摘要:选项设置 阅读全文
posted @ 2020-08-12 10:26 BloggerSb 阅读(524) 评论(0) 推荐(0) 编辑
摘要:<select id="FloorType" name="FloorType"> @{ var check = ""; } @if (floorItem != null) { foreach (var item in floorItem) { if (item.SysNo.ToString().Eq 阅读全文
posted @ 2020-08-11 14:03 BloggerSb 阅读(545) 评论(0) 推荐(0) 编辑
摘要:.td-img { max-width: 300px; max-height: 150px; cursor: pointer; vertical-align: middle; } .td-img .el-icon-circle-close { color: white; } <el-image :s 阅读全文
posted @ 2020-08-07 15:13 BloggerSb 阅读(2359) 评论(0) 推荐(0) 编辑
摘要:--引入 slide-unlock.css slide.js <div class="sliderdv"> <div id="slider"> <div id="slider_bg"></div> <span id="label">>></span> <span id="labelTip">拖动滑块 阅读全文
posted @ 2020-08-05 14:55 BloggerSb 阅读(170) 评论(0) 推荐(0) 编辑
摘要:<template slot-scope="{row}" slot="sqlText"> <p v-html="row.sqlText" style="white-space: pre-line;"></p></template> style="white-space: pre-line;" 这个样 阅读全文
posted @ 2020-08-03 13:00 BloggerSb 阅读(1741) 评论(0) 推荐(1) 编辑
摘要:sql自定义函数及C#中调用 1、在C#中调用sql自定义函数 1.1 标量值函数 sql语句调用 select dbo.GetClassIDWithName(1) string strSql = string.Format("select dbo.GetClassIDWithName('{0}') 阅读全文
posted @ 2020-08-03 11:53 BloggerSb 阅读(466) 评论(0) 推荐(0) 编辑
摘要:URL编码表 backspace 8% A 41% a 61% § %A7 Õ %D5 tab 9% B 42% b 62% « %AB Ö %D6 linefeed %0A C 43% c 63% ¬ %AC Ø %D8 creturn %0D D 44% d 64% ¯ %AD Ù %D9 sp 阅读全文
posted @ 2020-08-03 11:46 BloggerSb 阅读(420) 评论(0) 推荐(0) 编辑
摘要:<template> <div class="app-container"> <div class="filter-container"> <el-button type="primary" icon="el-icon-edit" @click="dialogFormVisible=true"> 打 阅读全文
posted @ 2020-08-03 11:37 BloggerSb 阅读(2413) 评论(0) 推荐(0) 编辑
摘要:缓存雪崩当 缓存服务器(如redis)重启 或者 大量缓存集中在某一个时间段失效,这样在失效的时候,会给后端系统(如数据库DB)带来很大压力。导致系统崩溃。 如何避免 缓存雪崩?1:在 缓存失效 后,通过加锁或者队列来控制 读数据库 写缓存的线程数量。比如对某个key只允许一个线程查询数据和写缓存, 阅读全文
posted @ 2020-08-03 11:25 BloggerSb 阅读(135) 评论(0) 推荐(0) 编辑
摘要:select top 1 CONVERT(int, ISNULL( REPLACE( ClientCode , '{0}' ,''),0) ) +1 as MaxValue from CRM_Client where ClientCode like '{0}%' " + "order by CONV 阅读全文
posted @ 2020-08-03 10:47 BloggerSb 阅读(104) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示