XSLT存档  

不及格的程序员-八神

 查看分类:  ASP.NET XML/XSLT JavaScripT   我的MSN空间Blog
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页
摘要: Java并发编程:阻塞队列 Java并发编程:阻塞队列 在前面几篇文章中,我们讨论了同步容器(Hashtable、Vector),也讨论了并发容器(ConcurrentHashMap、CopyOnWriteArrayList),这些工具都为我们编写多线程程序提供了很大的方便。今天我们来讨论另外一类容 阅读全文
posted @ 2018-09-13 16:55 不及格的程序员-八神 阅读(14) 评论(0) 推荐(0) 编辑
摘要: public List<TaskWareList_Picking_DB> getWareListByCustom(String cBillCode) { List<TaskWareList_Picking_DB> list = new ArrayList<>(); Cursor cursor = n 阅读全文
posted @ 2018-09-07 09:23 不及格的程序员-八神 阅读(40) 评论(0) 推荐(0) 编辑
摘要: Android 串口通信开发笔记01 silencefun 关注 2018.01.24 17:37 字数 1282 阅读 173评论 0喜欢 1 做了几个月的工业用平板开发,主要是串口通信。总结一下: Android 串口开发笔记01: 应用场景、 名词解释、调试工具(本篇)Android 串口开发 阅读全文
posted @ 2018-07-29 13:57 不及格的程序员-八神 阅读(92) 评论(0) 推荐(0) 编辑
摘要: Writing Out a DOM as an XML File After you have constructed a DOM--either by parsing an XML file or building it programmatically--you frequently want 阅读全文
posted @ 2018-07-13 08:54 不及格的程序员-八神 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 支付宝支付开发—当面付条码支付和扫码支付https://blog.csdn.net/pondbay/article/details/52330990 2016年08月26日 18:59:20 阅读数:24447 关键字:支付宝 当面付 条码支付 扫码支付 二维码支付 订单查询 退款作者:方倍工作室 阅读全文
posted @ 2018-06-27 09:35 不及格的程序员-八神 阅读(221) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-06-27 08:47 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Entity Framework 小技巧五 —— 如何得到EF查询生成的SQL? 最近挺忙的,只能为大家带来一些使用EF的小技巧。有关EF4.1的使用与探索将在之后一段时间为大家奉上。今天为大家带来如何得到EF查询所生成的SQL。 在EF 4和EF 3.5 SP1中,我们可以使用ToTraceStr 阅读全文
posted @ 2018-05-17 13:21 不及格的程序员-八神 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 浅谈SQL Server数据库分页 数据库分页是老生常谈的问题了。如果使用ORM框架,再使用LINQ的话,一个Skip和Take就可以搞定。但是有时由于限制,需要使用存储过程来实现。在SQLServer中使用存储过程实现分页的已经有很多方法了。之前在面试中遇到过这一问题,问如何高效实现数据库分页。刚 阅读全文
posted @ 2018-05-17 10:48 不及格的程序员-八神 阅读(7) 评论(0) 推荐(0) 编辑
摘要: SVC webservice $.ajax({ type: "post", url: "/Service1.svc/getName", data: '{"name":[0,1,2],"imageBuffer":[0,1,2]}', contentType: 'application/json; ch 阅读全文
posted @ 2018-05-14 13:20 不及格的程序员-八神 阅读(31) 评论(0) 推荐(0) 编辑
摘要: Client templating with jQuery and JSON (CSASPNETClientTemplateJQueryJSON) Summary This project illustrates how to display a tabular data to users base 阅读全文
posted @ 2018-05-14 10:23 不及格的程序员-八神 阅读(105) 评论(0) 推荐(0) 编辑
摘要: <script> jQuery.fn.setCursorPosition = function(position) { if(this.lengh == 0) return this; return $(this).setSelection(position, position); } jQuery 阅读全文
posted @ 2018-05-10 16:23 不及格的程序员-八神 阅读(19) 评论(0) 推荐(0) 编辑
摘要: //必须要引用的两个命空间 using System.Data;using System.Linq; public void UpdateFormulaSet(FormulaSetFilterCondition entity) { var dataAccess = new FormulaAccess 阅读全文
posted @ 2018-05-03 15:29 不及格的程序员-八神 阅读(7) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-04-12 11:33 不及格的程序员-八神 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 个人所得税使用超额累进 不超过500元的 5% 超过500元至2,000元的部分 10% 超过2,000元至5,000元的部分 15% 超过5,000元至20,000元的部分 20% 以上面几个为例吧! 工资是1000的话,就用10%的税率,那里面其实有500元是只需交5%的,也就是说如果全额乘以1 阅读全文
posted @ 2018-04-10 10:51 不及格的程序员-八神 阅读(41) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-04-03 11:21 不及格的程序员-八神 阅读(11) 评论(0) 推荐(0) 编辑
摘要: SQL Server死锁产生原因及解决办法 . 其实所有的死锁最深层的原因就是一个:资源竞争 表现一: 一个用户A 访问表A(锁住了表A),然后又访问表B,另一个用户B 访问表B(锁住了表B),然后企图访问表A,这时用户A由于用户B已经锁住表B,它必须等待用户B释放表B,才能继续,好了他老人家就只好 阅读全文
posted @ 2018-03-26 22:14 不及格的程序员-八神 阅读(49) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-03-26 21:56 不及格的程序员-八神 阅读(5) 评论(0) 推荐(0) 编辑
摘要: sql server中高并发情况下 同时执行select和update语句死锁问题 原创 2014年12月31日 00:39:26 30882 最近在项目上线使用过程中使用SqlServer的时候发现在高并发情况下,频繁更新和频繁查询引发死锁。通常我们知道如果两个事务同时对一个表进行插入或修改数据, 阅读全文
posted @ 2018-03-26 21:28 不及格的程序员-八神 阅读(24) 评论(0) 推荐(0) 编辑
摘要: <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 不及格的程序员-八神 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 2022-10-24 想到另一个方法,将双引号中的内容Base64编码,可以辟免许多场合的特殊字符交叉,在JSON或XML中网络传递很方便。 Base64FormattingOptions Enumeration OnClientClick="if(jQuery(&quot;input[name$= 阅读全文
posted @ 2018-03-19 15:35 不及格的程序员-八神 阅读(60) 评论(0) 推荐(0) 编辑
摘要: " and cSupplierName like '%' + @cSupplierName + '%'" update thwOrderInfo set csendtype = @sendType where cOrderCode in ("+strOrderCode.ToString()+");s 阅读全文
posted @ 2018-03-19 15:33 不及格的程序员-八神 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 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 不及格的程序员-八神 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 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 不及格的程序员-八神 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 实体类 自定义分类 tHWOrderInfo public partial class tHWOrderInfo { [DataMember] public string cSender { get; set; } } 强类型 通过函数IsxxxxNull() 判断 一下. 阅读全文
posted @ 2018-03-01 11:53 不及格的程序员-八神 阅读(12) 评论(0) 推荐(0) 编辑
摘要: System.Threading.ThreadExceptionEventHandler errHandler = delegate (object sender, System.Threading.ThreadExceptionEventArgs e) { if (e.Exception.GetT 阅读全文
posted @ 2018-02-16 20:10 不及格的程序员-八神 阅读(24) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-01-24 09:03 不及格的程序员-八神 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-01-18 11:37 不及格的程序员-八神 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 唐郑国公魏征金口“斩龙台”梦斩泾河黄龙的传说 (2013-03-23 19:43:43) 标签: 金口 斩龙台 梦斩泾河龙王 魏征 传说 分类: 故乡:掌故轶事 在金口金水河东北岸,有一座高3米,呈不规则椭圆型,总面积约达8000平米的土台,此台东连南屏山,西望赤矶山。唐代以前因三国赤壁之战时,诸葛 阅读全文
posted @ 2018-01-16 10:05 不及格的程序员-八神 阅读(1894) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-01-08 09:30 不及格的程序员-八神 阅读(7) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-12-28 12:55 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-12-20 16:16 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-12-20 09:50 不及格的程序员-八神 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 惠威订单导入,判断字段哪个超长? How to get the maximum length of a string from an EDMX model in code? Ask Question up vote3down votefavorite 4 I've created an EDMX o 阅读全文
posted @ 2017-12-08 15:08 不及格的程序员-八神 阅读(15) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-12-06 10:14 不及格的程序员-八神 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-11-24 09:15 不及格的程序员-八神 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-10-27 14:15 不及格的程序员-八神 阅读(2) 评论(0) 推荐(0) 编辑
摘要: What is Container.DataItem exactly? Ask Question 2 Answers activeoldestvotes up vote20down voteaccepted This article might help you understand. Quote: 阅读全文
posted @ 2017-10-09 22:08 不及格的程序员-八神 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 当form表单文本框控件在收到回车事件时,默认会触发表单内第一个可提交按钮的事件,但业务中可能要求有其它控件进行提交,而不是这个默认的 这时需要脚本控件事件冒泡传递取消回事事件. ASP.NET多个提交按钮页面,回车Enter执行指定按钮的事件(转) 在WEB页面上,通常SUBMIT类型的按钮会被默 阅读全文
posted @ 2017-09-01 14:20 不及格的程序员-八神 阅读(1093) 评论(0) 推荐(0) 编辑
摘要: 在更新面板中正常的按钮事件中, 点击开发触发网络请求.beginRequest被触发, 当服务器端返回响应数据时,endRequest被触发. 这是正常的流程. 还有另一种情况发生, 在EndRequest函数中脚本触发了另一次网络请求,这时 beginRequest 被触发, 网络请求开始的同时, 阅读全文
posted @ 2017-08-02 09:33 不及格的程序员-八神 阅读(210) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-08-01 06:40 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页