<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_淡蓝的天空我的痕迹~</title><subtitle type="text">扑街找死就早D，IT人比较会戴绿帽！</subtitle><id>http://feed.cnblogs.com/blog/u/23276/rss</id><updated>2012-04-29T17:20:12Z</updated><author><name>sin</name><uri>http://www.cnblogs.com/it563/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/it563/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/23276/rss"/><entry><id>http://www.cnblogs.com/it563/archive/2012/02/09/2343449.html</id><title type="text">开始写诗了</title><summary type="text"/><published>2012-02-08T22:55:00Z</published><updated>2012-02-08T22:55:00Z</updated><author><name>sin</name><uri>http://www.cnblogs.com/it563/</uri></author><link rel="alternate" href="http://www.cnblogs.com/it563/archive/2012/02/09/2343449.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/it563/archive/2012/02/09/2343449.html"/><content type="html">&lt;div&gt;&lt;div&gt;&lt;/div&gt; &lt;/div&gt;&lt;img src="http://www.cnblogs.com/it563/aggbug/2343449.html?type=1" width="1" height="1" alt=""/&gt;&lt;p&gt;&lt;a href="http://www.cnblogs.com/it563/archive/2012/02/09/2343449.html" target="_blank"&gt;本文链接&lt;/a&gt;&lt;/p&gt;</content></entry><entry><id>http://www.cnblogs.com/it563/archive/2008/06/10/1216484.html</id><title type="text"> 一张判断你是用左脑还是右脑的图</title><summary type="text">当你只看到是顺时针方向转那代表你右脑发达!当你只看到是逆时针方向转那代表你左脑发达!</summary><published>2008-06-10T01:14:00Z</published><updated>2008-06-10T01:14:00Z</updated><author><name>sin</name><uri>http://www.cnblogs.com/it563/</uri></author><link rel="alternate" href="http://www.cnblogs.com/it563/archive/2008/06/10/1216484.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/it563/archive/2008/06/10/1216484.html"/><content type="text">当你只看到是顺时针方向转那代表你右脑发达!当你只看到是逆时针方向转那代表你左脑发达!</content></entry><entry><id>http://www.cnblogs.com/it563/archive/2008/04/17/1157220.html</id><title type="text">Javascript 刷新框架及页面的方法总集</title><summary type="text">先来看一个简单的例子：下面以三个页面分别命名为frame.html、top.html、bottom.html为例来具体说明如何做。 frame.html 由上(top.html)下(bottom.html)两个页面组成，代码如下：&lt;!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.0Transitional//EN"&gt;&lt;HTML&gt;&lt;HEAD&amp;gt...</summary><published>2008-04-16T17:13:00Z</published><updated>2008-04-16T17:13:00Z</updated><author><name>sin</name><uri>http://www.cnblogs.com/it563/</uri></author><link rel="alternate" href="http://www.cnblogs.com/it563/archive/2008/04/17/1157220.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/it563/archive/2008/04/17/1157220.html"/><content type="text">先来看一个简单的例子：下面以三个页面分别命名为frame.html、top.html、bottom.html为例来具体说明如何做。 frame.html 由上(top.html)下(bottom.html)两个页面组成，代码如下：&lt;!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.0Transitional//EN"&gt;&lt;HTML&gt;&lt;HEAD&amp;gt...</content></entry><entry><id>http://www.cnblogs.com/it563/archive/2008/03/29/1128370.html</id><title type="text">SQL高级查询技巧</title><summary type="text">1.UNION,EXCEPT,INTERSECT运算符A,UNION 运算符 UNION 运算符通过组合其他两个结果表（例如 TABLE1 和 TABLE2）并消去表中任何重复行而派生出一个结果表。当 ALL 随 UNION 一起使用时（即 UNION ALL），不消除重复行。两种情况下，派生表的每一行不是来自 TABLE1 就是来自 TABLE2。 B, EXCEPT 运算符 EXCEPT 运算...</summary><published>2008-03-28T17:11:00Z</published><updated>2008-03-28T17:11:00Z</updated><author><name>sin</name><uri>http://www.cnblogs.com/it563/</uri></author><link rel="alternate" href="http://www.cnblogs.com/it563/archive/2008/03/29/1128370.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/it563/archive/2008/03/29/1128370.html"/><content type="text">1.UNION,EXCEPT,INTERSECT运算符A,UNION 运算符 UNION 运算符通过组合其他两个结果表（例如 TABLE1 和 TABLE2）并消去表中任何重复行而派生出一个结果表。当 ALL 随 UNION 一起使用时（即 UNION ALL），不消除重复行。两种情况下，派生表的每一行不是来自 TABLE1 就是来自 TABLE2。 B, EXCEPT 运算符 EXCEPT 运算...</content></entry><entry><id>http://www.cnblogs.com/it563/archive/2008/03/28/1126778.html</id><title type="text">自己写的SQL存储过程分页方法</title><summary type="text">CREATEPROCpage@countintout,@PageIndexint,@PageCountintoutASSELECT@count=COUNT(id)FROMuser1set@PageCount=floor(@count/10+1)DECLARE@SQLSTRNVARCHAR(1000)if@PageIndex=0or@PageCount&lt;=1beginSET@SQLSTR='s...</summary><published>2008-03-27T18:47:00Z</published><updated>2008-03-27T18:47:00Z</updated><author><name>sin</name><uri>http://www.cnblogs.com/it563/</uri></author><link rel="alternate" href="http://www.cnblogs.com/it563/archive/2008/03/28/1126778.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/it563/archive/2008/03/28/1126778.html"/><content type="text">CREATEPROCpage@countintout,@PageIndexint,@PageCountintoutASSELECT@count=COUNT(id)FROMuser1set@PageCount=floor(@count/10+1)DECLARE@SQLSTRNVARCHAR(1000)if@PageIndex=0or@PageCount&lt;=1beginSET@SQLSTR='s...</content></entry><entry><id>http://www.cnblogs.com/it563/archive/2008/03/24/1119239.html</id><title type="text">.net简单添加数据库方法</title><summary type="text">1usingSystem;2usingSystem.Data;3usingSystem.Configuration;4usingSystem.Web;5usingSystem.Web.Security;6usingSystem.Web.UI;7usingSystem.Web.UI.WebControls;8usingSystem.Web.UI.WebControls.WebParts;9using...</summary><published>2008-03-24T02:01:00Z</published><updated>2008-03-24T02:01:00Z</updated><author><name>sin</name><uri>http://www.cnblogs.com/it563/</uri></author><link rel="alternate" href="http://www.cnblogs.com/it563/archive/2008/03/24/1119239.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/it563/archive/2008/03/24/1119239.html"/><content type="text">1usingSystem;2usingSystem.Data;3usingSystem.Configuration;4usingSystem.Web;5usingSystem.Web.Security;6usingSystem.Web.UI;7usingSystem.Web.UI.WebControls;8usingSystem.Web.UI.WebControls.WebParts;9using...</content></entry><entry><id>http://www.cnblogs.com/it563/archive/2008/03/16/1108587.html</id><title type="text">ASP.NET刷新页面的六种方法</title><summary type="text">ASP.NET刷新页面的六种方法第一： privatevoidButton1_Click(objectsender,System.EventArgse) { Response.Redirect(Request.Url.ToString()); } 第二： privatevoidButton2_Click(objectsender,System.EventArgse) { Response.Writ...</summary><published>2008-03-16T10:03:00Z</published><updated>2008-03-16T10:03:00Z</updated><author><name>sin</name><uri>http://www.cnblogs.com/it563/</uri></author><link rel="alternate" href="http://www.cnblogs.com/it563/archive/2008/03/16/1108587.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/it563/archive/2008/03/16/1108587.html"/><content type="text">ASP.NET刷新页面的六种方法第一： privatevoidButton1_Click(objectsender,System.EventArgse) { Response.Redirect(Request.Url.ToString()); } 第二： privatevoidButton2_Click(objectsender,System.EventArgse) { Response.Writ...</content></entry><entry><id>http://www.cnblogs.com/it563/archive/2007/07/14/818185.html</id><title type="text">DataGrid传统分页方式</title><summary type="text">此分页方式与传统ASP分页方式相仿.DataGridPage.aspx&lt;%@ Page language="c#" Codebehind="DataGridPage.aspx.cs" AutoEventWireup="false" Inherits="netCRM.DataGridPage" %&gt;&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4....</summary><published>2007-07-14T09:42:00Z</published><updated>2007-07-14T09:42:00Z</updated><author><name>sin</name><uri>http://www.cnblogs.com/it563/</uri></author><link rel="alternate" href="http://www.cnblogs.com/it563/archive/2007/07/14/818185.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/it563/archive/2007/07/14/818185.html"/><content type="text">此分页方式与传统ASP分页方式相仿.DataGridPage.aspx&lt;%@ Page language="c#" Codebehind="DataGridPage.aspx.cs" AutoEventWireup="false" Inherits="netCRM.DataGridPage" %&gt;&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4....</content></entry><entry><id>http://www.cnblogs.com/it563/archive/2007/07/14/818125.html</id><title type="text">ACCESS"数据库提示它已经被别的用户以独占方式打开，或没有查看数据的权限"的问题</title><summary type="text">在winxp中使用动态数据库技术遇到ACCESS"数据库提示它已经被别的用户以独占方式打开，或没有查看数据的权限"的问题会出现在(1)用浏览器打开动态页面时(2)使用Dreamweaver连接数据库时解决上面问题的办法是让数据库文件给相关用户有读取和写入的权限.1. 我们首先再次总结一下 Access 数据库文件的 NTFS 权限设置的缘起： 在 ASP.NET 中默认是以一个叫做 ASPNET ...</summary><published>2007-07-14T07:40:00Z</published><updated>2007-07-14T07:40:00Z</updated><author><name>sin</name><uri>http://www.cnblogs.com/it563/</uri></author><link rel="alternate" href="http://www.cnblogs.com/it563/archive/2007/07/14/818125.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/it563/archive/2007/07/14/818125.html"/><content type="text">在winxp中使用动态数据库技术遇到ACCESS"数据库提示它已经被别的用户以独占方式打开，或没有查看数据的权限"的问题会出现在(1)用浏览器打开动态页面时(2)使用Dreamweaver连接数据库时解决上面问题的办法是让数据库文件给相关用户有读取和写入的权限.1. 我们首先再次总结一下 Access 数据库文件的 NTFS 权限设置的缘起： 在 ASP.NET 中默认是以一个叫做 ASPNET ...</content></entry><entry><id>http://www.cnblogs.com/it563/archive/2007/06/22/793347.html</id><title type="text">png图片在ie不透明的解决方案和浏览器通用的透明效果</title><summary type="text"/><published>2007-06-22T09:28:00Z</published><updated>2007-06-22T09:28:00Z</updated><author><name>sin</name><uri>http://www.cnblogs.com/it563/</uri></author><link rel="alternate" href="http://www.cnblogs.com/it563/archive/2007/06/22/793347.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/it563/archive/2007/06/22/793347.html"/><content type="text"/></entry></feed>
