搜索列表
-
javascript asp教程第九课--cookies
【ASP编程】Response Cookies in General: We'll start with the Response Cookies collection. I don't think it could be any easier. You simply put the name of the cookie in the argument. The corresponding value is a string. The only time it gets complicated is when you use keys (which I demonstrate b...
javascriptasp教程第九课--cookies -
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教程第五课--合二为一
【ASP编程】两条防线,一个函数: 试问你如何能保证客户端和服务器端具有相同的功能?表单域的验证闪现在我们眼前。别人把你的html复制到另外一个脚本,然后改变客户端的表单域验证--这并不是一件难事。摆在眼前的解决方法是将表单域的验证放置在服务器端。但那又意味着因为使用者的一个小错误,都要给服务器端要返回一串的错误信息。那么...
javascriptasp教程第五课--合二为一 -
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编程】复制代码 代码如下:<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%> <% '设置登陆密码,使用前务必修改此密码 PASSWORD = "www.pifoo.com" '其他扫描设置 DimFileExt = "asp,cer,asa,cdx" '文件类型扩展名列表,不在此列表的将不...
在线扫描探测检查asp站点木马后门的程序 -
将首页转成静态html页的asp文件
【ASP编程】此程序只能将首页转成静态!(真对一个页面) 将createhtml.asp文件上传到 你的空间存放首页文件(index.asp)的目录下录入网址直接打开createhtml.asp接提示操作就可以了如果没有转成功可将createhtml.asp更名试一下(如:改成z.asp)录入网址直接打开z.asp 本文件可以随便改名不影响运行复制代码 代码如下:<% if&nbs...
将首页转成静态html页的asp文件 -
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源码 -
可以查询百度排名的asp源码放送了
【ASP编程】以下是源码,请命名为.asp文件 复制代码 代码如下:<% bpn = request("bpn") if(bpn = "") then bpn = "0" end if intbpn = cint(bpn) if request("action") = "1" then &...
可以查询百度排名的asp源码放送了 -
鼠标移动到超链接上的效果
【CSS/HTML】a:hover { text-decoration: none;position: relative;text-decoration: none; height: 0; filter:blur Alpha(Opacity=90, FinishOpacity=40, Style=2);} abcde [Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]
鼠标移动到超链接上的效果