<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_李超</title><subtitle type="text">大象無形 大音希聲</subtitle><id>http://feed.cnblogs.com/blog/u/20916/rss</id><updated>2011-10-16T08:27:10Z</updated><author><name>coderlee</name><uri>http://www.cnblogs.com/coderlee/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/coderlee/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/20916/rss"/><entry><id>http://www.cnblogs.com/coderlee/archive/2010/01/06/1640783.html</id><title type="text">SysListView32 的使用资料</title><summary type="text">使用列表控制的步骤如下： 调用CreateWindowEx函数来创建一个列表控件，指定它的类名为SysListView32。您还可以在此处指定控件初次显示时的方式。  创建和初始化用在列表控件中显示项目的图象列表（如果存在）。  向列表控件中插入列，如果显示的方式是报告方式这一步是必须的。  向控件中插入项目和自项目。  所用到的两种数据结构：列：  LV_COLUMN STRUCT imask ...</summary><published>2010-01-06T14:41:00Z</published><updated>2010-01-06T14:41:00Z</updated><author><name>coderlee</name><uri>http://www.cnblogs.com/coderlee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/coderlee/archive/2010/01/06/1640783.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/coderlee/archive/2010/01/06/1640783.html"/></entry><entry><id>http://www.cnblogs.com/coderlee/archive/2009/10/18/1585496.html</id><title type="text">使用ThinkPHP的一些小经验</title><summary type="text">一些常用的PHP小知识 nl2br()，php内置函数，可以将string中的\n替换为&amp;lt;br /&amp;gt;，建议不要再入库的时候进行处理，而在向浏览器发送数据的之前再进行处理。 empty()，检测$_GET,$_POST中的某项是否不为空，使用empty函数而不是is_set函数，因为客户端提交空字符串的时候，is_set函数会返回true。  ThinkPHP对RBAC的支持(Role-...</summary><published>2009-10-18T08:19:00Z</published><updated>2009-10-18T08:19:00Z</updated><author><name>coderlee</name><uri>http://www.cnblogs.com/coderlee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/coderlee/archive/2009/10/18/1585496.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/coderlee/archive/2009/10/18/1585496.html"/></entry><entry><id>http://www.cnblogs.com/coderlee/archive/2009/10/10/1580596.html</id><title type="text">Windows操作系统中的I/O（读/写 输入/输出）</title><summary type="text">导言写一个Windows平台下的应用程序大多时候都是离不开读写文件，网络通信的。比如一个服务应用程序来说，它可能从网络适配器接受用户的请求，对请求进行处理计算，最终将用户端所需的数据返回，中间可能还涉及到对磁盘的读写，这些都是I/O操作，所以，要设计一个稳健的，高效的，伸缩性好的应用程序，就必须将Windows的I/O机制搞清楚。一、 两种 读/写 机制输入Input / 输出Output，有两种...</summary><published>2009-10-10T12:27:00Z</published><updated>2009-10-10T12:27:00Z</updated><author><name>coderlee</name><uri>http://www.cnblogs.com/coderlee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/coderlee/archive/2009/10/10/1580596.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/coderlee/archive/2009/10/10/1580596.html"/></entry><entry><id>http://www.cnblogs.com/coderlee/archive/2009/09/29/1576098.html</id><title type="text">记下来 关于InitCommonControls()</title><summary type="text">在使用SDK编写windows界面的时候，如果使用了列表控件，月历控件等高级控件，要#include &amp;lt;commctrl.h&amp;gt;并且在注册窗口类之前调用InitCommonControls()函数。InitCommonControls()函数内部用来注册高级控件的窗口类，这个函数注册了所有高级控件的窗口类。另外还有一个InitCommonControlsEx()函数，接受参数，参数为注册...</summary><published>2009-09-28T21:15:00Z</published><updated>2009-09-28T21:15:00Z</updated><author><name>coderlee</name><uri>http://www.cnblogs.com/coderlee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/coderlee/archive/2009/09/29/1576098.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/coderlee/archive/2009/09/29/1576098.html"/></entry><entry><id>http://www.cnblogs.com/coderlee/archive/2009/09/29/1576097.html</id><title type="text">windows内核对象  笔记</title><summary type="text">设备描述表对象HDC,画刷对象HBRUSH,画笔对象HPEN等等，这些不是核心对象，是GDI绘图对象，也是用户对象。区别用户对象和内核对象的通用方法是，创建内核对象的时候有个PSECURITY_ATTRIBUTES类型的参数，该参数是一个指向 SECURITY_ATTRIBUTES 结构的指针，该结构描述了所创建的内核对象的安全性，比如是否可以被子进程继承。typedef struct _SECU...</summary><published>2009-09-28T21:09:00Z</published><updated>2009-09-28T21:09:00Z</updated><author><name>coderlee</name><uri>http://www.cnblogs.com/coderlee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/coderlee/archive/2009/09/29/1576097.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/coderlee/archive/2009/09/29/1576097.html"/></entry><entry><id>http://www.cnblogs.com/coderlee/archive/2009/09/29/1576096.html</id><title type="text">vc开发windows程序时的字符串问题的一个归纳（原创）</title><summary type="text">新手做windows开发首先的一个问题就是把字符串搞懂。一. 字符集简史字符是一个独立于计算机的概念，没有计算机仍然有字符，字符是文字符号，英语汉语日语还有各种标点符号都是字符。字符串就是字符组成的数组。早先，计算机使用一个字节来表示一个字符，字节Byte是8位无符号数字，单字节编码ASCII可以表示大小写英文与一些标点符号。后来为了显示汉字日语等亚洲文字，制定了双字节编码，使用两个或一个字节来表...</summary><published>2009-09-28T20:36:00Z</published><updated>2009-09-28T20:36:00Z</updated><author><name>coderlee</name><uri>http://www.cnblogs.com/coderlee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/coderlee/archive/2009/09/29/1576096.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/coderlee/archive/2009/09/29/1576096.html"/></entry><entry><id>http://www.cnblogs.com/coderlee/archive/2009/09/17/1568524.html</id><title type="text">ie6的一个css的BUG</title><summary type="text">[代码]在ie7和firefox下一切显示正常，但是在ie6下就出问题了，没有背景色了。可以给外层的div加一个高度来实现ie6下的兼容，不过挺别扭的。</summary><published>2009-09-17T07:06:00Z</published><updated>2009-09-17T07:06:00Z</updated><author><name>coderlee</name><uri>http://www.cnblogs.com/coderlee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/coderlee/archive/2009/09/17/1568524.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/coderlee/archive/2009/09/17/1568524.html"/></entry><entry><id>http://www.cnblogs.com/coderlee/archive/2009/08/12/1544107.html</id><title type="text">MSSQL 注入资料总结</title><summary type="text">在玩mysql的注入时候 union 是比较好用的 但是mssql和access下union会涉及到类型不匹配，无法将两个结果集合并的问题。解 决方法为将 union select 1,2,3,4 改为 union all select null,null,null,null 至于为什么用union all 而不用union呢 因为union会对结果集进行重复项的删除 删除重复项的时候使用了dis...</summary><published>2009-08-12T00:27:00Z</published><updated>2009-08-12T00:27:00Z</updated><author><name>coderlee</name><uri>http://www.cnblogs.com/coderlee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/coderlee/archive/2009/08/12/1544107.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/coderlee/archive/2009/08/12/1544107.html"/></entry><entry><id>http://www.cnblogs.com/coderlee/archive/2009/08/09/1542170.html</id><title type="text">sql 高级注入【转载 国外某牛人写的】</title><summary type="text">摘要：  这份文档是详细讨论SQL注入技术，它适应于比较流行的IIS+ASP+SQLSERVER平台。它讨论了哪些SQL语句能通过各种各样的方法注入到应用程序中，并且记录与攻击相关的数据确认和数据库锁定。  这份文档的预期读者为与数据库通信的WEB程序的开发者和那些扮演审核WEB应用程序的安全专家。 介绍：  SQL是一种用于关系数据库的结构化查询语言。它分为许多种，但大多数都松散地基于美国国家标...</summary><published>2009-08-09T02:42:00Z</published><updated>2009-08-09T02:42:00Z</updated><author><name>coderlee</name><uri>http://www.cnblogs.com/coderlee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/coderlee/archive/2009/08/09/1542170.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/coderlee/archive/2009/08/09/1542170.html"/></entry><entry><id>http://www.cnblogs.com/coderlee/archive/2009/08/09/1542143.html</id><title type="text">MYSQL 注入资料总结</title><summary type="text">and 1 = 2 union all select 1,2,3,user()and 1 = 2 union all select 1,2,3,version()and 1 = 2 union all select 1,2,3,database()and 1 = 2 union all select 1,2,3,load_file(0x文件路径)and 1 = 2 union all select...</summary><published>2009-08-09T01:42:00Z</published><updated>2009-08-09T01:42:00Z</updated><author><name>coderlee</name><uri>http://www.cnblogs.com/coderlee/</uri></author><link rel="alternate" href="http://www.cnblogs.com/coderlee/archive/2009/08/09/1542143.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/coderlee/archive/2009/08/09/1542143.html"/></entry></feed>
