搜索列表
-
服务端 VBScript 与 JScript 几个相同特性的写法与示例
【ASP编程】By shawl.qiu 摘要: 本文演示了ASP服务端脚本的几个重要应用. 目录: 1. 遍历集合/对象 1.1 VBScript 遍历表单集合 1.2 JScript 遍历表单集合 2. 转变量值为变量, 并赋值 2.1 VBScript 转变量值为变量并赋值 2.2 JScript 转变量...
服务端VBScript与JScript几个相同特性的写法与示例 -
asp动态级联菜单代码
【ASP编程】JS脚本: <% dim rs dim sql dim count dim rs1 dim sql1 sql = "select * from region order by zoneid asc" set rs = server.createobject("adodb.recordset") rs.open sql,conn,1,3 %> <...
asp动态级联菜单代码 -
用正则实现提取代码内容的代码
【正则表达式】研究了一个下午,没有头绪,来论坛求助,老ID丢了!重新注册了一个!=。=! 我想用javascript正则提取asp代码中 SQL行的 表达式 但是写来写去都不行,各位辛苦帮忙看看! 想提取引号中的SQL表达式 strSql="Select * from project354 where ID =&nbs...
用正则实现提取代码内容的代码 -
一个新的CSS菜单代码
【CSS/HTML】if (!document.getElementById) document.getElementById = function() { return null; } function initializeMenu(menuId, actuatorId) { var menu = document.getElementById(menuId); var actuator = document.getElementById(actuatorId); if (menu == null || actuator == null) return; //if (wind...
一个新的CSS菜单代码 -
创建无表格网站的原因和原则 译文
【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...
创建无表格网站的原因和原则译文 -
巧妙的最大化动态载入IFrame的方法
【CSS/HTML】把这段代码写进一个html测试一下,很神奇的哦~ var f= document.getElementById("iframe"); f.src="http://www.baidu.com"; f.width="100%"; f.height="100%"; [Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]好了好了,别笑了,你别说,这代码对有些人还是很有用的呢~
巧妙的最大化动态载入IFrame的方法 -
字符批量替换程序asp服务器版
【ASP编程】**********字符批量替换程序asp服务器版****************** 安装方法:直接把replace.asp文件放在任意的支持asp+FSO的环境中 运行方法:用http://localhost/.../replace.asp访问即可看到程序的效果 此程序的功能主要用来替换文件夹中所有文本文件字符用的。 如:txt、htm、asp、jsp、php、…… 一切的文本文件 div+C...
字符批量替换程序asp服务器版 -
web打印的另类方法
【CSS/HTML】web打印的另类方法 选择自 wfmazhenhai 的 Blog 关键字 web打印的另类方法 出处 相信用B/S方式做过应用的人都可能会遇到这样一个问题,如何方便、美观地实现报表打印。如果使用浏览器的打印...
web打印的另类方法 -
dl+ol应用分析
【CSS/HTML】题目:dl+ol的练习 作者:嗷嗷 上次 li 把 dl 模拟了~dl不知道要干什么了~找了ol一起来做复合列表~ 这个练习除了css外~外加用了点JS 先看下难看的演示 因为最近太懒~没做漂亮的样式 学习dl中 dl * { margin: 0; padding: 0; font-size:12px; } dl { width: 405p...
dl+ol应用分析 -
一小偷类!!有兴趣的可以看看
【ASP编程】类代码 (cls.asp) <% Class clsThief Private strUrl ' 偷取地址 Private strValue ' 偷取的内容,所有内容 Private strResult ' 偷取结果,可以具体某一块内容 Private flag &...
一小偷类!!有兴趣的可以看看 -
用asp实现的数据库中存取文件的代码
【ASP编程】************************************************************************* '** '** 使用 ADODB.Stream 保存/读取文件到数据库 '** 引用 Microsoft ActiveX Data Objects 2.5 Library 及以上版本 '** '** ----- 数据库连接字符...
用asp实现的数据库中存取文件的代码 -
用js实现的DIV+CSS编辑器代码
【CSS/HTML】DIV+CSS编辑器 var sInitColor = null; function callColorDlg(obj){ if (sInitColor == null) var sColor = dlgHelper.ChooseColorDlg(); else var sColor = dlgHelper.ChooseColorDlg(sInitColor); sColor = sColor.toString(16); if (sColor.length < 6) { var sTempString = "000000".substring...
用js实现的DIV+CSS编辑器代码