搜索列表
-
javascript asp教程第十一课--Application 对象
【ASP编程】Overview: The Application Object represents a collection of ASP pages. The Application object has zero (0) properties, two (2) collections, two (2) methods, and two (2) events. Get Started: Below are a couple scripts for lesson11. <%@LANGUAGE="JavaScript"%> <%...
javascriptasp教程第十一课--Application对象 -
javascript asp教程第八课--request对象
【ASP编程】Request Object: Request has five (5) Collections, one (1) Property, and one (1) Method. You'll use the Collections far more than the property or the method. Request Collections: Below is a table of the Request Collections and descriptions of how they are used. Request Collections Cli...
javascriptasp教程第八课--request对象 -
javascript asp教程第七课--response属性
【ASP编程】Below is a table of Response Properties along with examples and explanations. Response Properties Buffer Response.Buffer = trueAllows for the buffering of output CacheControl Response.CacheControl="Public" Sets Cache to "Public" or "Private" CharSet Response.CharSet="window...
javascriptasp教程第七课--response属性 -
javascript asp教程第四课 同时使用vbscript和javascript
【ASP编程】开始: 你能让javascript和vbscript实现从同一个表格里传出音乐。看看下面的脚本: function JSGreeting() { return "Greetings from a JavaScript Function"; } Function VBGreeting() VBGreeting="Greetings from a VBScript Function" End Function Function toDollars(x) toDollars=FormatCur...
javascriptasp教程第四课同时使用vbscript和javascript -
ASP与数据库,有用的代码(转贴,摘贴)
【ASP编程】ASP与数据库 ASP与数据库运用:密码验证 Microsoft 的大作ASP(Active Server Pages)以其易学易用、扩充性好、功能多而强等优点正掀起一场新的web编程革命(从严格意义上讲,编写asp并不是编程),它以令人吃惊的发展和普及速度大有取代由perl等语言编...
ASP与数据库,有用的代码(转贴,摘贴) -
用asp实现文件浏览、上传、下载的程序
【ASP编程】可以放在服务器上,对服务器上的文件进行浏览、上传、下载,可下载文件源码。 把下所有代码入在一个文件里即可,文件的后缀要为asp。 复制代码 代码如下:<% thedir = request("thedir") if thedir = "" then folderini = server.mappath("....
用asp实现文件浏览、上传、下载的程序 -
可以查询google排名的asp源码
【ASP编程】以下是源码,请命名为.ASP文件. 复制代码 代码如下:<meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <% if request("action") = "1" then word = request("word") url ...
可以查询google排名的asp源码 -
VBA 中要用到的常数第1/2页
【其它脚本】Calendar 常数 可在代码中的任何地方用下列常数代替实际值: 常数 值 描述 vbCalGreg 0 指出使用的是阳历。 vbCalHijri 1 指出使用的是伊斯兰历法。 Color 常数 可在代码中的任何地方用下列常数代替实际值: 常数 值 描述 vbBlack 0x0 黑色 vbRed 0xFF 红色 vbGreen 0xFF00 绿色 vbYellow 0xFFFF 黄色 vbBl...
VBA中要用到的常数 -
常用CSS集合
【CSS/HTML】/**//*按钮样式*/ .ButtonCSS {}{ font-family: "Tahoma", "宋体"; font-size:9pt; color: #003399; border: 1px #003399 solid; color:006699; &...
常用CSS集合 -
影响SEO的页面制作细节
【网站应用】jxdawei的个人博客:http://www.iwcn.net 1、将css与javascript全部用下边的方法分离到外部文件中去。 <link rel="stylesheet" type="text/css" href="css/style.css" media="all"/><script type="text/javascript" src="include/common.js"></script> 让html代码最大可能的只是用来显示实际内...
影响SEO的页面制作细节 -
使用Flash DownLoad编写采集器(之突破防盗连下载音乐文件)第1/4页
【ASP编程】<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gbk"> <title>Flash DownLoad&n...
使用FlashDownLoad编写采集器(之突破防盗连下载音乐文件) -
后台管理登录篇-asp设计与数据库
【ASP编程】实现功能不难,想要完善,甚至完美,那才叫难。所以,小弟将功能实现帖出来,和各位初学者讨论讨论。至于完善,就看各位自己的想法了 一、建立数据库 在就开始了,我建了一个名为windsn.mdb的数据库,包含4张表admin表(用于管理员信息):id, name(用户名), pwd(密码), ...concent表(用于存放文档数据):con_id, title,...
后台管理登录篇-asp设计与数据库