搜索列表
-
正则表达式30分钟入门教程 v2.1版
【正则表达式】运行下面的代码就可以看到 正则表达式30分钟入门教程 h1 {text-align:center} p {text-indent:2em; line-height:140%; margin:auto 10px} span {margin:3px} table {margin:auto; border-style:solid; border-width:1px 1px 0 0; border-color:gray} td, th {border-style:solid; border-width:0 0 1px 1px; border-colo...
正则表达式30分钟入门教程v2.1版 -
hta实现的涂鸦效果
【HTA】hta:HTML Applications hta是html的可执行程序,制作很简单,将文件*.htm改为*.hta就可以了。 不过hta有自己独有的标签<hta>,并可设置其属性达到很不错的效果。 hta是制作小程序绝佳选择。 下面是一个例子,几天前在公司无聊时写的。 代码: 复制代码 代码如下:<HTML> <H...
hta实现的涂鸦效果 -
asp下tag的实现,简单介绍与部分代码
【ASP编程】标签(Tag)是什么? 标签是一种更为自由、灵活,完全由用户决定的分类方式,而非传统的由网站定义的分类。您可以根据自己的理解,对发表的文章、上传的图片、音乐、视频等各种文件添加一个或多个标签,进行灵活的描述。 添加标签(Tag)有什么作用? 标签体现了群体的力量,使得用户之间可以通过相近的内容产生更多的...
asp下tag的实现简单介绍与部分代码 -
pjblog中添加各种GOOGLE广告的方法总结
【网站应用】添加各种GOOGLE广告的方法总结 第一种:pjblog中如何在文章中加入GOOGLE广告(也可以放其他的东西) 首先,做一个背景图片(如我做的这个),上传到模版目录中的images目录下,宽和高555×79,当然背景图的大小你完全可以自已定义,这取决于你将展示的Google Adsense广告尺寸大小。 然后,在模板的style.c...
pjblog中添加各种GOOGLE广告的方法总结 -
服务端 VBScript 与 JScript 几个相同特性的写法与示例
【ASP编程】By shawl.qiu 摘要: 本文演示了ASP服务端脚本的几个重要应用. 目录: 1. 遍历集合/对象 1.1 VBScript 遍历表单集合 1.2 JScript 遍历表单集合 2. 转变量值为变量, 并赋值 2.1 VBScript 转变量值为变量并赋值 2.2 JScript 转变量...
服务端VBScript与JScript几个相同特性的写法与示例 -
创建无表格网站的原因和原则 译文
【CSS/HTML】In a time of web developers who just like to say that 'Tables are Evil' and can't (or won't) explain why, this article will attempt to give...
创建无表格网站的原因和原则译文 -
学习正则表达式30分钟入门教程(第二版)
【正则表达式】30分钟内让你明白正则表达式是什么,并对它有一些基本的了解,让你可以在自己的程序或网页里使用它
正则表达式30分钟 -
XML 增、删、改和查示例
【XML/RSS】1.已知有一个XML文件(bookstore.xml)如下: <?xml version="1.0" encoding="gb2312"?><bookstore> <book genre="fantasy" ISBN="2-3631-4"> <title>Oberon's Legacy</title> <author>Corets, Eva</author...
XML增、删、改和查示例 -
javascript asp教程添加和修改
【ASP编程】The Connection Execute(): If you want to retrieve data from a database then you have no choice but to use a Recordset. However, for the purposes of adding, updating, and deleting data you don't necessarily have to have a Recordset. It's up to you. For the purposes of adding, updating and delet...
javascriptasp教程添加和修改 -
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教程第十三课--include文件
【ASP编程】Server Side Includes: Experienced JavaScript programmers know that code reuse is good. Experienced JavaScript programmers also know that JavaScript functions are data types. So, we should be able to store a JavaScript function inside a Session Variable or an Application Variable,...
javascriptasp教程第十三课--include文件 -
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对象