<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_webgame</title><subtitle type="text">-------In the search for life here.</subtitle><id>http://feed.cnblogs.com/blog/u/36319/rss</id><updated>2011-08-21T16:08:51Z</updated><author><name>truejob</name><uri>http://www.cnblogs.com/ljhong/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ljhong/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/36319/rss"/><entry><id>http://www.cnblogs.com/ljhong/archive/2009/07/06/1517407.html</id><title type="text">SQLserver字符串分割函数</title><summary type="text">一、按指定符号分割字符串，返回分割后的元素个数，方法很简单，就是看字符串中存在多少个分隔符号，然后再加一，就是要求的结果。CREATE function Get_StrArrayLength( @str varchar(1024), --要分割的字符串 @split varchar(10) --分隔符号)returns intasbegin declare @location int declar...</summary><published>2009-07-05T17:18:00Z</published><updated>2009-07-05T17:18:00Z</updated><author><name>truejob</name><uri>http://www.cnblogs.com/ljhong/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ljhong/archive/2009/07/06/1517407.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ljhong/archive/2009/07/06/1517407.html"/><content type="text">一、按指定符号分割字符串，返回分割后的元素个数，方法很简单，就是看字符串中存在多少个分隔符号，然后再加一，就是要求的结果。CREATE function Get_StrArrayLength( @str varchar(1024), --要分割的字符串 @split varchar(10) --分隔符号)returns intasbegin declare @location int declar...</content></entry><entry><id>http://www.cnblogs.com/ljhong/archive/2009/07/06/1517406.html</id><title type="text">SQLSERVER字符串截取</title><summary type="text">已知: 字段A='F:\photo\Winter Leaves.jpg'要求:分段截取每段字符[字段A不能为TEXT类型,否则报错]解决方法:+++++++++++++++++++++++++++++++++++++++++++++++++++---截取字符串A的第一个\左边的字符串select left(A,charindex('/',A)-1)输出结果：F:++++++++++++++++++...</summary><published>2009-07-05T17:16:00Z</published><updated>2009-07-05T17:16:00Z</updated><author><name>truejob</name><uri>http://www.cnblogs.com/ljhong/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ljhong/archive/2009/07/06/1517406.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ljhong/archive/2009/07/06/1517406.html"/><content type="text">已知: 字段A='F:\photo\Winter Leaves.jpg'要求:分段截取每段字符[字段A不能为TEXT类型,否则报错]解决方法:+++++++++++++++++++++++++++++++++++++++++++++++++++---截取字符串A的第一个\左边的字符串select left(A,charindex('/',A)-1)输出结果：F:++++++++++++++++++...</content></entry><entry><id>http://www.cnblogs.com/ljhong/archive/2009/07/06/1517404.html</id><title type="text">asp.net(ajax)表单验证 函数包</title><summary type="text">asp.net(ajax)表单验证 函数包/*********************************************************************************** * 功能说明:js表单验证函数库* 作者: 刘功勋;* 版本:v0.1(javascript);时间:2006-7-27* 注意:文件为js文件,使用时,&lt;script langua...</summary><published>2009-07-05T17:14:00Z</published><updated>2009-07-05T17:14:00Z</updated><author><name>truejob</name><uri>http://www.cnblogs.com/ljhong/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ljhong/archive/2009/07/06/1517404.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ljhong/archive/2009/07/06/1517404.html"/><content type="text">asp.net(ajax)表单验证 函数包/*********************************************************************************** * 功能说明:js表单验证函数库* 作者: 刘功勋;* 版本:v0.1(javascript);时间:2006-7-27* 注意:文件为js文件,使用时,&lt;script langua...</content></entry><entry><id>http://www.cnblogs.com/ljhong/archive/2009/07/06/1517403.html</id><title type="text">asp.net的6种验证控件</title><summary type="text">用来验证表单的验证器（Web控件）RequiredFieldValidator检查用户是否输入或选择了任何内容RegularExpressionValidator根据规则表达式检查用户输入。该过程允许进行许多种类的检查，可以用于邮政编码和电话号码等的检查。CompareValidator将输入控件与一个固定值或另一个输入控件进行比较。例如，它可以用在口令验证字段中。也可以用来比较输入的日期和数字。...</summary><published>2009-07-05T17:12:00Z</published><updated>2009-07-05T17:12:00Z</updated><author><name>truejob</name><uri>http://www.cnblogs.com/ljhong/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ljhong/archive/2009/07/06/1517403.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ljhong/archive/2009/07/06/1517403.html"/><content type="text">用来验证表单的验证器（Web控件）RequiredFieldValidator检查用户是否输入或选择了任何内容RegularExpressionValidator根据规则表达式检查用户输入。该过程允许进行许多种类的检查，可以用于邮政编码和电话号码等的检查。CompareValidator将输入控件与一个固定值或另一个输入控件进行比较。例如，它可以用在口令验证字段中。也可以用来比较输入的日期和数字。...</content></entry><entry><id>http://www.cnblogs.com/ljhong/archive/2009/04/10/1433300.html</id><title type="text">Flex与.NET互操作(八)：使用FluorineFx网关实现远程访问 </title><summary type="text">关于远程访问在本系列文章中陆续的写了不少示例了，本文没有准备深入的去探讨，为了巩固FluorineFx网关的学习和使用。于此，本文将使用FluorineFx网关来提供数据服务等多项功能来介绍通过FluorineFx实现远程访问的相关知识点。 FluorineFx提供的远程访问包括有很多方面的知道点,本文只介绍其中的三个知识点:访问远程对象返回对象,返回DataTable,返回DataSet对象.F...</summary><published>2009-04-10T10:21:00Z</published><updated>2009-04-10T10:21:00Z</updated><author><name>truejob</name><uri>http://www.cnblogs.com/ljhong/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ljhong/archive/2009/04/10/1433300.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ljhong/archive/2009/04/10/1433300.html"/><content type="text">关于远程访问在本系列文章中陆续的写了不少示例了，本文没有准备深入的去探讨，为了巩固FluorineFx网关的学习和使用。于此，本文将使用FluorineFx网关来提供数据服务等多项功能来介绍通过FluorineFx实现远程访问的相关知识点。 FluorineFx提供的远程访问包括有很多方面的知道点,本文只介绍其中的三个知识点:访问远程对象返回对象,返回DataTable,返回DataSet对象.F...</content></entry><entry><id>http://www.cnblogs.com/ljhong/archive/2009/04/10/1433299.html</id><title type="text">Flex与.NET互操作(七)：了解FluorineFx的环境配置（远程对象、网关、通道、目的地） </title><summary type="text">Flex中的远程对象访问，也就是服务端提供一个远程服务对象（RemotingService Object），在Flex客户端通过相应的访问技术去调用远程对象的过程。 在本系列文章的前面几篇文章中所介绍的访问Webservice的方法，也就是一种远程对象方法，只不过他是基于WEB服务（WebServie）的远程访问，不是基于远程对象（Remoting Object）的的远程访问。要想直接实现基于对象...</summary><published>2009-04-10T10:20:00Z</published><updated>2009-04-10T10:20:00Z</updated><author><name>truejob</name><uri>http://www.cnblogs.com/ljhong/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ljhong/archive/2009/04/10/1433299.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ljhong/archive/2009/04/10/1433299.html"/><content type="text">Flex中的远程对象访问，也就是服务端提供一个远程服务对象（RemotingService Object），在Flex客户端通过相应的访问技术去调用远程对象的过程。 在本系列文章的前面几篇文章中所介绍的访问Webservice的方法，也就是一种远程对象方法，只不过他是基于WEB服务（WebServie）的远程访问，不是基于远程对象（Remoting Object）的的远程访问。要想直接实现基于对象...</content></entry><entry><id>http://www.cnblogs.com/ljhong/archive/2009/04/10/1433298.html</id><title type="text">Flex与.NET互操作(五)：使用FileReference+HttpHandler实现文件上传/下载 </title><summary type="text">在Flex的应用开发中，同ASP.NET,JSP,PHP等应用一样，都会有上传/下载文件的应用需求，Flex的SDK也为我们提供了专门的类FileRefUdderence实现文件上传/下载 。Flex只是作为一个客户端，要实现上传或下载必须得为其提供一个服务端来接受上传或下载的请求，本文以ASP.NET中的HttpHandler作为文件上传的服务端来完成上传功能。 OK，我们从Flex客户端开始，...</summary><published>2009-04-10T10:19:00Z</published><updated>2009-04-10T10:19:00Z</updated><author><name>truejob</name><uri>http://www.cnblogs.com/ljhong/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ljhong/archive/2009/04/10/1433298.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ljhong/archive/2009/04/10/1433298.html"/><content type="text">在Flex的应用开发中，同ASP.NET,JSP,PHP等应用一样，都会有上传/下载文件的应用需求，Flex的SDK也为我们提供了专门的类FileRefUdderence实现文件上传/下载 。Flex只是作为一个客户端，要实现上传或下载必须得为其提供一个服务端来接受上传或下载的请求，本文以ASP.NET中的HttpHandler作为文件上传的服务端来完成上传功能。 OK，我们从Flex客户端开始，...</content></entry><entry><id>http://www.cnblogs.com/ljhong/archive/2009/04/10/1433295.html</id><title type="text">Flex与.NET互操作(四)：使用HttpService、URLReqeust和URLLoader加载/传输数据 </title><summary type="text">在前两篇文章中分别介绍了Flex与.NET的WebService之间的数据交互通信知识，本文将介绍另外一种加载数据以及发起请求的方式。ActionScript 3.0中提供的数据加载请求类主要是HTTPService,URLLoader和URLRequest，可以通过他们协同来完成数据加载和请求。下面我么便来看看这三个类是怎么来完成数据加载工作。 在本地IIS服务器上有如下定义的XML文件：[代码...</summary><published>2009-04-10T10:18:00Z</published><updated>2009-04-10T10:18:00Z</updated><author><name>truejob</name><uri>http://www.cnblogs.com/ljhong/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ljhong/archive/2009/04/10/1433295.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ljhong/archive/2009/04/10/1433295.html"/><content type="text">在前两篇文章中分别介绍了Flex与.NET的WebService之间的数据交互通信知识，本文将介绍另外一种加载数据以及发起请求的方式。ActionScript 3.0中提供的数据加载请求类主要是HTTPService,URLLoader和URLRequest，可以通过他们协同来完成数据加载和请求。下面我么便来看看这三个类是怎么来完成数据加载工作。 在本地IIS服务器上有如下定义的XML文件：[代码...</content></entry><entry><id>http://www.cnblogs.com/ljhong/archive/2009/04/10/1433294.html</id><title type="text">Flex与.NET互操作(三)：基于WebService的数据访问(下) </title><summary type="text">在上一篇文章《Flex与.NET互操作(二)：基于WebService的数据访问(上) 》中介绍了通过&lt;mx:WebService&gt;标签来访问Webservice。实际上我们也可以通过编程的方式动态的访问WebService，Flex SDK为我们提供了WebService类。 使用WebService类来访问WebService其实也就是将&lt;mx:WebService&gt;标...</summary><published>2009-04-10T10:17:00Z</published><updated>2009-04-10T10:17:00Z</updated><author><name>truejob</name><uri>http://www.cnblogs.com/ljhong/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ljhong/archive/2009/04/10/1433294.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ljhong/archive/2009/04/10/1433294.html"/><content type="text">在上一篇文章《Flex与.NET互操作(二)：基于WebService的数据访问(上) 》中介绍了通过&lt;mx:WebService&gt;标签来访问Webservice。实际上我们也可以通过编程的方式动态的访问WebService，Flex SDK为我们提供了WebService类。 使用WebService类来访问WebService其实也就是将&lt;mx:WebService&gt;标...</content></entry><entry><id>http://www.cnblogs.com/ljhong/archive/2009/04/10/1433292.html</id><title type="text">Flex与.NET互操作(二)：基于WebService的数据访问(上) </title><summary type="text">Flex提供了&lt;mx:WebService&gt;、&lt;mx:HTTPService&gt;和&lt;mx:RemoteObject&gt;标签来直接访问远程数据，这用于与各种不同语言环境开发提供的远程服务端数据源（如WebService）进行数据交互通信显得更加容易. 本文以.NET平台下C#语言开发的WebService作为远程数据源,详细介绍Flex与.NET的WebService...</summary><published>2009-04-10T10:15:00Z</published><updated>2009-04-10T10:15:00Z</updated><author><name>truejob</name><uri>http://www.cnblogs.com/ljhong/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ljhong/archive/2009/04/10/1433292.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ljhong/archive/2009/04/10/1433292.html"/><content type="text">Flex提供了&lt;mx:WebService&gt;、&lt;mx:HTTPService&gt;和&lt;mx:RemoteObject&gt;标签来直接访问远程数据，这用于与各种不同语言环境开发提供的远程服务端数据源（如WebService）进行数据交互通信显得更加容易. 本文以.NET平台下C#语言开发的WebService作为远程数据源,详细介绍Flex与.NET的WebService...</content></entry></feed>
