philzhou

导航

08 2010 档案

asp.net下使用Request.Form获取非服务器控件的值的方法
摘要:<tr> <td>登录名:<input id="Text1" type="text" name="loginName" /><asp:Label ID="Label1" runat="server" Text="用户名已经存在"></asp:Label> </td> </tr> <tr> <td&... 阅读全文

posted @ 2010-08-23 15:58 philzhou 阅读(726) 评论(0) 推荐(0) 编辑

Consuming WCF / ASMX / REST service using JQuery
摘要:In this article I will explain how to consume a WCF / ASMX service using jQuery. The scope of the article is limited to creating & consuming different kind of services using jQuery. I have segrega... 阅读全文

posted @ 2010-08-11 22:12 philzhou 阅读(808) 评论(0) 推荐(0) 编辑

转载 Oracle常用函数
摘要:1. ASCII返回与指定的字符对应的十进制数;SQL> select ascii(A) A,ascii(a) a,ascii(0) zero,ascii( ) space from dual;A A ZERO SPACE--------- --------- --------- ---------65 97 48 322. CHR给出整数,返回对应的字符;SQL> select ch... 阅读全文

posted @ 2010-08-11 16:42 philzhou 阅读(246) 评论(0) 推荐(0) 编辑

转载 WCF VS ASPNET WEB SERVICE
摘要:IntroductionIn this post I will explain the Difference between ASP.NET web service and programming WCF services like ASP.NET web services. It also discusses how we use the both technologies for develo... 阅读全文

posted @ 2010-08-11 16:07 philzhou 阅读(821) 评论(3) 推荐(0) 编辑

转载 浅谈C#中构造函数与析构函数
摘要:构造函数和析构函数本节说明对象的创建、初始化和销毁过程。本节介绍下列主题: l 类构造函数l 结构构造函数l 析构函数类构造函数本节将讨论三种类构造函数:类构造函数的类型注释实例用于创建并初始化类的实例。私有在类之外不可访问的特殊类型实例构造函数。无法用私有构造函数来实例化类。静态在创建第一个实例或引用任何静态成员之前,将自动调用这种构造函数来初始化类。无法直接调用这种构造函数。备注 (1) 实例... 阅读全文

posted @ 2010-08-10 07:51 philzhou 阅读(2139) 评论(1) 推荐(0) 编辑

转载: NET中使用log4net记录日志
摘要:在做目前的项目中用到别的小组开发的一个日记记录的类,今天打开源程序看了一下,原来是在log4net组件外又包了一层,于是自已试了试log4net组件的应用。 一.简介 log4net是apache组织开发的日志组件, 可以从http://logging.apache.org/log4net/downloads.html下载log4net的源代码。同log4j一样(java下的日志记录组件)用户要在... 阅读全文

posted @ 2010-08-08 12:14 philzhou 阅读(442) 评论(0) 推荐(0) 编辑

JQuery's Ajax request a datatable
摘要:How to make a JQuery's Ajax request fora datatable, and display it on the page. Here is my solution,Firstly, using JQuery to make a async request to ASP.NET common httphandler, Secondly retrieve datat... 阅读全文

posted @ 2010-08-07 23:08 philzhou 阅读(796) 评论(0) 推荐(1) 编辑

javascript Check All, Uncheck All and check one at least
摘要:Use javascript to checked all,uncheck all and check if one item at least been checked when deleting.代码The target html generated by iis is as blow:代码 阅读全文

posted @ 2010-08-05 23:01 philzhou 阅读(469) 评论(0) 推荐(0) 编辑

ASP.NET 全文搜索
摘要:最近做一个在线阅读的网站文本内容的全文搜索网站(aspnet+sqlserver),当时有两个方案:1. Sql server 2005 Full Text Search service。2. Lucene.Net。Sql server的全文搜索索引管理比较方便,sqlserver 会自己管理索引的更新工作,也支持并发查询,但是遗憾的是没有HitHighlight功能,而且中文分词也做的比较瞎。L... 阅读全文

posted @ 2010-08-04 09:40 philzhou 阅读(1114) 评论(1) 推荐(1) 编辑

javascript debug 噩梦般的过程
摘要:用惯了Visual Sutdio, Eclipse这些功能强大的IDE, 这些让编程越来越傻瓜的东东,写程序的人记忆力都慢慢退化了, new一个对象,然后点一下那些函数全出来,谁也懒的去记忆了,可javascript却没有很好ide去支持(当然VS2008已经对js有很好的支持),用ultraedit,这类纯文本编辑器去做,真的是噩梦一场,js又是区分大小写的,往往一个变量名就是个大小写不匹配,就... 阅读全文

posted @ 2010-08-04 09:26 philzhou 阅读(245) 评论(1) 推荐(0) 编辑

JavaScript Implements right mouse button menu
摘要:In HTML, every tag has the "oncontextmenu" event, which accepts the right mouse button action. So we can use the event to fire the javascript function which creates a popup window and gives the menu h... 阅读全文

posted @ 2010-08-04 00:30 philzhou 阅读(782) 评论(0) 推荐(0) 编辑