搜索列表
-
FreeBSD操作系统下修改ip地址及捆定多个IP地址
【Unix/BSD】1.临时更改,即时生效.[root@freebsd7]# ifconfigle0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500 options=8<VLAN_MTU> 
地址多个操作系统修改 "netmaskinet255.255.255.0" -
ASP javascript Application对象的Contents和StaticObjects做Cache的一些经验
【ASP编程】ASP javascript: Application对象的Contents和StaticObjects做Cache的一些结论。ASP封装Cache对象,一般都是基于Application的,
ASPjavascriptApplicationContentsStaticObjectsCache -
在JScript中使用缓存技术的实际代码
【ASP编程】在编写ASP程序时,通常为了提高ASP程序的运行效率及减少对数据库的连接和查询,会使用缓存技术来缓存一些需要从数据库读取的数据。而在ASP中实现缓存的方法常用的就是使用Application对象。在编写ASP程序时,我们有两种语言可以选择,分别是VBScript和JScript。
JScript缓存技术 -
FF下 用 col 隐藏表格列的方法详解!
【CSS/HTML】一直一来,我都在想办法看能不能用 col 控制表格的列隐藏,但是无奈,FF对COL支持不够好(其实是以前没有发现COL在FF下要怎么弄)。
FFcol隐藏表格列 -
搭建SSH时的思考和遇到的几个问题的解决方法
【JSP编程】SSH流行很久了,一直看到官方文档和网上都在讲如何整合SSH,讨论各种整合的优缺点。今天我比较闲,也用我的一些想法来试着整合这三个最流行的框架。 本次所用版本为:Struts 1.3.9 Spring 2.5 Hiberante 3.2 开发工具和环境为:Eclipse 3.3+MyEcl...
搭建SSH思考问题解决 -
InstallShield 隐藏密码输入的脚本
【其它脚本】InstallShield 本身是不自带类型为 Password 的 TextBox 的,如果需要解决此问题,可以参照如下方法: 1、下载一个类似 C++ Resource Editor 的软件,这里我推荐大家用 ExeScope 2、打开_ISRes.dll,这个文件可以在<安装目录>\Redistributabl...
InstallShield隐藏密码输入的脚本 -
针对浏览器隐藏CSS之独孤九剑
【CSS/HTML】针对浏览器隐藏CSS之独孤九剑 Hide CSS for Browsers 我们都知道浏览器之间是有差异的,很多人在使用XHTML+CSS方式制作网页的时候都曾为此无比头痛。要在这些差异的影响下工作需要很多的技巧,“隐藏CSS”就是其中很重要的一种技巧(甚至是最重要的)。这种技巧的主要思想是,用某些方式对某些浏览器隐...
针对浏览器隐藏CSS之独孤九剑 -
学习正则表达式30分钟入门教程(第二版)
【正则表达式】30分钟内让你明白正则表达式是什么,并对它有一些基本的了解,让你可以在自己的程序或网页里使用它
正则表达式30分钟 -
javascript asp教程More About Recordsets
【ASP编程】Below we will attempt to access data from a database without knowing the column names. Clearly the best way to utilize data in your database is to keep track of your schema. Schema is the layout of data in your database. The concept is well beyond the scope of this web site, but it is ...
javascriptasp教程MoreAboutRecordsets -
javascript asp教程Recordset记录
【ASP编程】Recordset is another created/instanciated Object. It is a collection of data taken from a database. Recordset has 26 properties, 25 methods, 11 events, and two (2) collections. The vast majority of Recordset is beyond the scope of this web site. Quick Aside: The database we are using for l...
javascriptasp教程Recordset记录 -
javascript asp教程服务器对象
【ASP编程】Overview: The Server Object has seven (7) Methods, one (1) Property, zero (0) Events, and zero (0) Collections. List of Methods: Server Methods CreateObject( ) Server.CreateObject("ADODB.Recordset")Create an instance of an Object Execute( ) Server.Execute("fileName.asp")E...
javascriptasp教程服务器对象 -
javascript asp教程第十二课---session对象
【ASP编程】Overview: The Session Object is how you track a single user across many pages. It has four (4) properties, two (2) collections, one (1) method, and two (2) events. Get Started: In this series of examples we will create a password system. We will use the Session Object to track whet...
javascriptasp教程第十二课---session对象