摘要: Without getting too technical, I would define a Pascal Server Page (PSP) as a dynamic web page containing embedded Pascal Script (PS) code. When a web request is made, the PS code needs to be execute... 阅读全文
posted @ 2013-03-18 17:59 realnull 阅读(789) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.csdn.net/gueter/archive/2007/03/08/1524447.aspx Author :Jeffrey 引言 HTTP是一个属于应用层的面向对象的协议,由于其简捷、快速的方式,适用于分布式超媒体信息系统。它于1990年提出,经过几年的使用与发展,得到不断地完善和扩展。目前在WWW中使用的是HTTP/1.0的第六版,HTTP/1.1的规范化工作... 阅读全文
posted @ 2012-10-10 17:47 realnull 阅读(215) 评论(0) 推荐(0) 编辑
摘要: http://www.w3.org/TR/html401/interact/forms.html#h-17.13 阅读全文
posted @ 2012-10-10 11:52 realnull 阅读(158) 评论(0) 推荐(0) 编辑
摘要: http://www.blogjava.net/zjusuyong/articles/304788.html 阅读全文
posted @ 2012-10-09 11:08 realnull 阅读(175) 评论(0) 推荐(0) 编辑
摘要: ISAPI(Internet Server Application Programming Interface)作为一种可用来替代CGI的方法,是由微软和Process软件公司联合提出的Web服务器上的API标准。ISAPI与Web服务器结合紧密,功能强大,能够获得大量的信息,因此利用ISAPI可以开发出灵活高效的Web服务器增强程序。由于ISAPI程序与Web服务器的关系,使得ISAPI接口在安... 阅读全文
posted @ 2012-09-11 11:44 realnull 阅读(3719) 评论(0) 推荐(0) 编辑
摘要: Abort函数引起放弃的意外处理 Abs函数绝对值函数 AddExitProc函数将一过程添加到运行时库的结束过程表中 Addr函数返回指定对象的地址 AdjustLineBreaks函数将给定字符串的行分隔符调整为CR/LF序列 Align属性使控件位于窗口某部分 Alignment属性控件标签的文字位置 AllocMem函数在堆栈上分配给定大小的块... 阅读全文
posted @ 2012-09-06 16:41 realnull 阅读(652) 评论(0) 推荐(0) 编辑
摘要: procedure TForm1.Timer1Timer(Sender: TObject); var handle,hchild1,hchild2:THandle; point:TPoint; temp:array[0..255] of char; begin ://取得当前鼠标的位置 GetCursorPos(point); //取得... 阅读全文
posted @ 2012-08-31 15:10 realnull 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 1: procedure GetBaseClassPro(AClass : TObject;Astrings : TStrings); //获得属性信息 2: var 3: NumPro : integer; //用来记录事件属性的个数 4: Pplst : PPropList; //存放属性列表 5: Classtypeinfo : PTypeInfo; 6: cl... 阅读全文
posted @ 2012-08-31 10:32 realnull 阅读(296) 评论(0) 推荐(0) 编辑
摘要: GetTypeData 函数 GetPropInfo 函数 FindPropInfo 函数 GetPropInfos 函数 SortPropList 函数 GetPropList 函数 GetObjectPropClass 函数 PropType / PropIsType 函数 IsPublishedProp 函数 IsSt... 阅读全文
posted @ 2012-08-30 09:54 realnull 阅读(630) 评论(0) 推荐(0) 编辑
摘要: { Virtual method table entries } vmtSelfPtr = -88; vmtIntfTable = -84; vmtAutoTable = -80; vmtInitTable = -76; vmtTypeInfo = -72; vmtFieldTable... 阅读全文
posted @ 2012-08-29 17:03 realnull 阅读(282) 评论(0) 推荐(0) 编辑