<?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/14190/rss</id><updated>2008-11-19T06:35:35Z</updated><author><name>逍遥游</name><uri>http://www.cnblogs.com/jjiac/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jjiac/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/14190/rss"/><entry><id>http://www.cnblogs.com/jjiac/archive/2008/11/06/1328043.html</id><title type="text">验证数字的正则表达式集</title><summary type="text">验证数字：^[0-9]*$验证n位的数字：^\d{n}$验证至少n位数字：^\d{n,}$验证m-n位的数字：^\d{m,n}$验证数字和小数点:^[0-9]+([.]{0}|[.]{1}[0-9]+)$验证零和非零开头的数字：^(0|[1-9][0-9]*)$验证有两位小数的正实数：^[0-9]+(.[0-9]{2})?$验证有1-3位小数的正实数：^[0-9]+(.[0-9]{1,3})?$验...</summary><published>2008-11-06T05:47:00Z</published><updated>2008-11-06T05:47:00Z</updated><author><name>逍遥游</name><uri>http://www.cnblogs.com/jjiac/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jjiac/archive/2008/11/06/1328043.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jjiac/archive/2008/11/06/1328043.html"/><content type="text">验证数字：^[0-9]*$验证n位的数字：^\d{n}$验证至少n位数字：^\d{n,}$验证m-n位的数字：^\d{m,n}$验证数字和小数点:^[0-9]+([.]{0}|[.]{1}[0-9]+)$验证零和非零开头的数字：^(0|[1-9][0-9]*)$验证有两位小数的正实数：^[0-9]+(.[0-9]{2})?$验证有1-3位小数的正实数：^[0-9]+(.[0-9]{1,3})?$验...</content></entry><entry><id>http://www.cnblogs.com/jjiac/archive/2008/07/03/1234921.html</id><title type="text">.NET实现RSS格式文件</title><summary type="text">首先设计好数据库，然后开始做页面。使用Repeater控件，代码如下：ReadRss.aspx&lt;%@ Page language="c#" Codebehind="ReadRss.aspx.cs" AutoEventWireup="false" Inherits="MyTest.rss" ContentType="text/xml" %&gt;&lt;asp:Repeater id="rpt...</summary><published>2008-07-03T08:59:00Z</published><updated>2008-07-03T08:59:00Z</updated><author><name>逍遥游</name><uri>http://www.cnblogs.com/jjiac/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jjiac/archive/2008/07/03/1234921.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jjiac/archive/2008/07/03/1234921.html"/><content type="text">首先设计好数据库，然后开始做页面。使用Repeater控件，代码如下：ReadRss.aspx&lt;%@ Page language="c#" Codebehind="ReadRss.aspx.cs" AutoEventWireup="false" Inherits="MyTest.rss" ContentType="text/xml" %&gt;&lt;asp:Repeater id="rpt...</content></entry><entry><id>http://www.cnblogs.com/jjiac/archive/2008/07/03/1234643.html</id><title type="text">SQL SERVER 2005 通过链接服务器 访问 ORACLE 9i 的快速设定方法</title><summary type="text">SQL SERVER 2005 通过链接服务器（Linked Server）访问 ORACLE 9i 的方法 1)在SQL_SERVER 2005服务器上安装Oracle 9i的客户端。 假设安装到C:\ora92i\ 目录。如果D:是NTFS分区，需要将ORACLE安装后的目录设为所使用的用户有权可运行、可添加、可删除。2)配置C:\ora92i\network\ADMIN\tnsnames.o...</summary><published>2008-07-03T03:42:00Z</published><updated>2008-07-03T03:42:00Z</updated><author><name>逍遥游</name><uri>http://www.cnblogs.com/jjiac/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jjiac/archive/2008/07/03/1234643.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jjiac/archive/2008/07/03/1234643.html"/><content type="text">SQL SERVER 2005 通过链接服务器（Linked Server）访问 ORACLE 9i 的方法 1)在SQL_SERVER 2005服务器上安装Oracle 9i的客户端。 假设安装到C:\ora92i\ 目录。如果D:是NTFS分区，需要将ORACLE安装后的目录设为所使用的用户有权可运行、可添加、可删除。2)配置C:\ora92i\network\ADMIN\tnsnames.o...</content></entry><entry><id>http://www.cnblogs.com/jjiac/archive/2008/04/09/1144947.html</id><title type="text">[转]asp.net页面缓存技术</title><summary type="text">页面缓存使用OutputCache指令。&lt;%@OutputCacheDuration="3600"Location="Any"VaryByCustom="browser"VaryByParam="RequestID"%&gt;其中Duration和VaryByParam特性是必须的。Location控制页面缓存的位置 Location 含义 Any 默认值。意味着页面的输出可以缓存在客户端浏...</summary><published>2008-04-09T07:04:00Z</published><updated>2008-04-09T07:04:00Z</updated><author><name>逍遥游</name><uri>http://www.cnblogs.com/jjiac/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jjiac/archive/2008/04/09/1144947.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jjiac/archive/2008/04/09/1144947.html"/><content type="text">页面缓存使用OutputCache指令。&lt;%@OutputCacheDuration="3600"Location="Any"VaryByCustom="browser"VaryByParam="RequestID"%&gt;其中Duration和VaryByParam特性是必须的。Location控制页面缓存的位置 Location 含义 Any 默认值。意味着页面的输出可以缓存在客户端浏...</content></entry><entry><id>http://www.cnblogs.com/jjiac/archive/2007/09/27/907456.html</id><title type="text">Oracle常用Script </title><summary type="text">1、查看当前所有对象 SQL&gt; select * from tab;2、建一个和a表结构一样的空表 SQL&gt; create table b as select * from a where 1=2;SQL&gt; create table b(b1,b2,b3) as select a1,a2,a3 from a where 1=2;3、察看数据库的大小，和空间使用情况 SQL&gt;...</summary><published>2007-09-27T01:15:00Z</published><updated>2007-09-27T01:15:00Z</updated><author><name>逍遥游</name><uri>http://www.cnblogs.com/jjiac/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jjiac/archive/2007/09/27/907456.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jjiac/archive/2007/09/27/907456.html"/><content type="text">1、查看当前所有对象 SQL&gt; select * from tab;2、建一个和a表结构一样的空表 SQL&gt; create table b as select * from a where 1=2;SQL&gt; create table b(b1,b2,b3) as select a1,a2,a3 from a where 1=2;3、察看数据库的大小，和空间使用情况 SQL&gt;...</content></entry><entry><id>http://www.cnblogs.com/jjiac/archive/2007/09/13/891763.html</id><title type="text">[整理]如何在 JavaScript 中实现拖放</title><summary type="text">&lt;HTML&gt; &lt;HEAD&gt; &lt;script language='javascript'&gt; var mouseOffset = null;var iMouseDown = false;var lMouseState = false;var dragObject = null;// Demo 0 variablesvar DragDrops = [];var cur...</summary><published>2007-09-13T06:41:00Z</published><updated>2007-09-13T06:41:00Z</updated><author><name>逍遥游</name><uri>http://www.cnblogs.com/jjiac/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jjiac/archive/2007/09/13/891763.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jjiac/archive/2007/09/13/891763.html"/><content type="text">&lt;HTML&gt; &lt;HEAD&gt; &lt;script language='javascript'&gt; var mouseOffset = null;var iMouseDown = false;var lMouseState = false;var dragObject = null;// Demo 0 variablesvar DragDrops = [];var cur...</content></entry><entry><id>http://www.cnblogs.com/jjiac/archive/2007/09/13/891523.html</id><title type="text">[转]鼠标拖动层的javascript脚本 </title><summary type="text">方法一：代码的基本思想是：把要拖动的控件（可以是table,div,input等任何html标签）看成是元素（element）,然后这些元素需要有一个空间让他们可以拖动，我把这个称作容器(container)，把在容器里面鼠标的拖动距离加到元素的style.left和style.top那里，那么元素的位置就发生改变，这样就实现了拖动的效果。代码的使用方法，就像下面的示例一样，首先要指定一个cont...</summary><published>2007-09-13T02:45:00Z</published><updated>2007-09-13T02:45:00Z</updated><author><name>逍遥游</name><uri>http://www.cnblogs.com/jjiac/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jjiac/archive/2007/09/13/891523.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jjiac/archive/2007/09/13/891523.html"/><content type="text">方法一：代码的基本思想是：把要拖动的控件（可以是table,div,input等任何html标签）看成是元素（element）,然后这些元素需要有一个空间让他们可以拖动，我把这个称作容器(container)，把在容器里面鼠标的拖动距离加到元素的style.left和style.top那里，那么元素的位置就发生改变，这样就实现了拖动的效果。代码的使用方法，就像下面的示例一样，首先要指定一个cont...</content></entry><entry><id>http://www.cnblogs.com/jjiac/archive/2007/09/12/890390.html</id><title type="text">[转]Spring笔记</title><summary type="text">本文档适用于使用过Spring的开发者，该文章有助于他们重新梳理一下对Spring的认识。 这篇文章是本人在项目开发中使用Spring的总结，这里只是归纳了我们在开发中经常要用到的Spring的特性，Spring的其他特性或者使用起来比较复杂，或者很少有机会在实际开发中使用将不再本文中做介绍。 一、背景，为什么我们需要Spring？Martin Flower提出了IoC（Inversion of...</summary><published>2007-09-12T01:25:00Z</published><updated>2007-09-12T01:25:00Z</updated><author><name>逍遥游</name><uri>http://www.cnblogs.com/jjiac/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jjiac/archive/2007/09/12/890390.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jjiac/archive/2007/09/12/890390.html"/><content type="text">本文档适用于使用过Spring的开发者，该文章有助于他们重新梳理一下对Spring的认识。 这篇文章是本人在项目开发中使用Spring的总结，这里只是归纳了我们在开发中经常要用到的Spring的特性，Spring的其他特性或者使用起来比较复杂，或者很少有机会在实际开发中使用将不再本文中做介绍。 一、背景，为什么我们需要Spring？Martin Flower提出了IoC（Inversion of...</content></entry><entry><id>http://www.cnblogs.com/jjiac/archive/2007/09/12/890369.html</id><title type="text">[转]web项目经理手册-项目经理需要铭记在心的话 </title><summary type="text">版权声明：如有转载请求，请注明出处：http://blog.csdn.net/yzhz 杨争1、项目经理不是来管人的，而是来支持人的。 解析：不光是项目经理，任何经理的职位都是如此。但现实中很多人并不是那么做，这也是为什么他们没能把项目做成功的原因。作为项目经理首先要端正态度，认识到这份工作职责的本质。2、好的开始是成功的一半。 解析：一个好项目的失败，往往是由于前期的准备不足、计划不周密。所以在...</summary><published>2007-09-12T01:07:00Z</published><updated>2007-09-12T01:07:00Z</updated><author><name>逍遥游</name><uri>http://www.cnblogs.com/jjiac/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jjiac/archive/2007/09/12/890369.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jjiac/archive/2007/09/12/890369.html"/><content type="text">版权声明：如有转载请求，请注明出处：http://blog.csdn.net/yzhz 杨争1、项目经理不是来管人的，而是来支持人的。 解析：不光是项目经理，任何经理的职位都是如此。但现实中很多人并不是那么做，这也是为什么他们没能把项目做成功的原因。作为项目经理首先要端正态度，认识到这份工作职责的本质。2、好的开始是成功的一半。 解析：一个好项目的失败，往往是由于前期的准备不足、计划不周密。所以在...</content></entry><entry><id>http://www.cnblogs.com/jjiac/archive/2007/06/29/800574.html</id><title type="text">[原]学习Struts+Spring+hibernate笔记</title><summary type="text">步骤：一、创建WEB工程。二、导入Struts。三、加载Filters，SetCharacterEncodingFilter.java，在Tomcat 6.0\webapps\examples\WEB-INF\classes\filters目录下有，Web.xml中配置&lt;filter&gt; &lt;filter-name&gt;Set Character Encoding&lt;/filt...</summary><published>2007-06-29T09:51:00Z</published><updated>2007-06-29T09:51:00Z</updated><author><name>逍遥游</name><uri>http://www.cnblogs.com/jjiac/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jjiac/archive/2007/06/29/800574.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jjiac/archive/2007/06/29/800574.html"/><content type="text">步骤：一、创建WEB工程。二、导入Struts。三、加载Filters，SetCharacterEncodingFilter.java，在Tomcat 6.0\webapps\examples\WEB-INF\classes\filters目录下有，Web.xml中配置&lt;filter&gt; &lt;filter-name&gt;Set Character Encoding&lt;/filt...</content></entry></feed>
