XSLT存档  

不及格的程序员-八神

 查看分类:  ASP.NET XML/XSLT JavaScripT   我的MSN空间Blog
03 2018 档案
SQL Server死锁产生原因及解决办法 .
摘要:SQL Server死锁产生原因及解决办法 . 其实所有的死锁最深层的原因就是一个:资源竞争 表现一: 一个用户A 访问表A(锁住了表A),然后又访问表B,另一个用户B 访问表B(锁住了表B),然后企图访问表A,这时用户A由于用户B已经锁住表B,它必须等待用户B释放表B,才能继续,好了他老人家就只好 阅读全文
posted @ 2018-03-26 22:14 不及格的程序员-八神 阅读(111) 评论(0) 推荐(0)
SqlServer锁,SqlServer Profile 分析问题
该文被密码保护。
posted @ 2018-03-26 21:56 不及格的程序员-八神 阅读(5) 评论(0) 推荐(0)
SqlServer中高并发情况下Select和update语句死锁
摘要:sql server中高并发情况下 同时执行select和update语句死锁问题 原创 2014年12月31日 00:39:26 30882 最近在项目上线使用过程中使用SqlServer的时候发现在高并发情况下,频繁更新和频繁查询引发死锁。通常我们知道如果两个事务同时对一个表进行插入或修改数据, 阅读全文
posted @ 2018-03-26 21:28 不及格的程序员-八神 阅读(56) 评论(0) 推荐(0)
jQuery checkbox 全选功能, 选择器
摘要:<asp:Button Text="测试功能" ID="btnTest" runat="server" OnClientClick="if(jQuery(&quot;input[name$='chkSelect'][type='checkbox'][disabled!='disabled']:che 阅读全文
posted @ 2018-03-19 16:06 不及格的程序员-八神 阅读(36) 评论(0) 推荐(0)
Javascript双引号,单引号重叠时字符串如何处理?
摘要:2022-10-24 想到另一个方法,将双引号中的内容Base64编码,可以辟免许多场合的特殊字符交叉,在JSON或XML中网络传递很方便。 Base64FormattingOptions Enumeration OnClientClick="if(jQuery(&quot;input[name$= 阅读全文
posted @ 2018-03-19 15:35 不及格的程序员-八神 阅读(70) 评论(0) 推荐(0)
C# SQL Parameter Query with in , or like query.
摘要:" and cSupplierName like '%' + @cSupplierName + '%'" update thwOrderInfo set csendtype = @sendType where cOrderCode in ("+strOrderCode.ToString()+");s 阅读全文
posted @ 2018-03-19 15:33 不及格的程序员-八神 阅读(22) 评论(0) 推荐(0)
Enabling Multiple Active Result Sets
摘要:Multiple Active Result Sets (MARS) Multiple Active Result Sets (MARS) is a feature that allows the execution of multiple batches on a single connectio 阅读全文
posted @ 2018-03-14 16:03 不及格的程序员-八神 阅读(169) 评论(0) 推荐(0)
避免Asp.Net 重复提交
摘要:https://stackoverflow.com/questions/1498269/asp-net-double-click-problem <html> <head runat="server"> <title>double-click test</title> <noscript> <met 阅读全文
posted @ 2018-03-07 14:04 不及格的程序员-八神 阅读(25) 评论(0) 推荐(0)
强类型DataSet,实体类,字段定制可为Null, 强类型(未处理的约束异常)
摘要:实体类 自定义分类 tHWOrderInfo public partial class tHWOrderInfo { [DataMember] public string cSender { get; set; } } 强类型 通过函数IsxxxxNull() 判断 一下. 给代码加上 Missin 阅读全文
posted @ 2018-03-01 11:53 不及格的程序员-八神 阅读(19) 评论(0) 推荐(0)