摘要: public class MyHandler:IHttpHandler, IRequiresSessionState{...} 阅读全文
posted @ 2009-05-05 15:55 lp123 阅读(107) 评论(0) 推荐(0) 编辑
摘要: How to overcome cross-domain ajax call:1, Use Proxy[代码][代码]2, Use src property of <script></script> object to call cross-domain server.3, Still thinking... 阅读全文
posted @ 2009-04-21 17:51 lp123 阅读(348) 评论(0) 推荐(0) 编辑
摘要: Methods used in client-side call server-side during B/S:1, Directly call http://abc.com///click the link or key in url in browserdisadvantage: manually connect, not automatically2, Use Form submit met... 阅读全文
posted @ 2009-04-21 17:40 lp123 阅读(167) 评论(0) 推荐(0) 编辑
摘要: -Debug within DbgCLR.exe1, Open DbgCLR.exe from C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\GuiDebug2, Open the source file you want to debug.3, Select "Debug" on main menu, then select "Attac... 阅读全文
posted @ 2009-04-05 14:27 lp123 阅读(289) 评论(0) 推荐(0) 编辑
摘要: -How to debug Store Procedures in VS 20051, Click "View" on main menu of VS 2005 IDE, then select "Server Explorer".2, Right-clicik on the "Data Connection", then select "Create a new SQL Server Conne... 阅读全文
posted @ 2009-04-04 10:40 lp123 阅读(327) 评论(0) 推荐(0) 编辑
摘要: How to Post Client-side data to Server on the same ASPX Page[代码][代码] 阅读全文
posted @ 2009-03-31 16:44 lp123 阅读(207) 评论(0) 推荐(0) 编辑
摘要: Sql Server 2005中Except的用法: Except Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1--Select the second min item. 2select min(scroe) 3from 4( 5 se... 阅读全文
posted @ 2009-03-31 12:26 lp123 阅读(335) 评论(0) 推荐(0) 编辑
摘要: SQL Server Built-in Functions.-Replace的用法:select replace('zhou','z','x')select replace(replace(replace(CONVERT(varchar, getdate(), 120 ),'-',''),' ',''),':','')--20090331151201-Date Format:select CONV... 阅读全文
posted @ 2009-03-30 15:17 lp123 阅读(242) 评论(0) 推荐(0) 编辑
摘要: How to retrieve data byspecified row number.SQL:[代码] 阅读全文
posted @ 2009-03-30 14:37 lp123 阅读(651) 评论(0) 推荐(0) 编辑
摘要: Data Structure: [Line List,(Array, Linked List), Stack, Queue, Tree(Binary Tree, Balance Tree), Graphic]Algorithm: [Sorting (selection sorting, quick sorting, bubble sorting), Finding (middle finding)... 阅读全文
posted @ 2009-03-26 13:09 lp123 阅读(152) 评论(0) 推荐(0) 编辑