搜索列表
-
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教程第十课--global asa
【ASP编程】Global.asa: First of all, what is a global.asa? It's an optional script file that holds certain "global" information that you can access through the entire ASP appliciation. The global.asa is a plain text file saved with the .asa extension. You should only have one global.asa and it should go ...
javascriptasp教程第十课--globalasa -
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教程第七课--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属性 -
ASP与数据库,有用的代码(转贴,摘贴)
【ASP编程】ASP与数据库 ASP与数据库运用:密码验证 Microsoft 的大作ASP(Active Server Pages)以其易学易用、扩充性好、功能多而强等优点正掀起一场新的web编程革命(从严格意义上讲,编写asp并不是编程),它以令人吃惊的发展和普及速度大有取代由perl等语言编...
ASP与数据库,有用的代码(转贴,摘贴) -
Ajax+ASP和Flash+ASP数据读取取方法有些相似的实现方法
【ASP编程】Ajax+ASP和Flash+ASP数据存取方法两种数据存取方法差不多。===============================下面是一个ChatRoom的Ajax部分代码:var ajaxHttpRequest = false;function ajaxInit() { if(window.XMLHttpRequest) { //Mozilla, Opera, ... ajaxHttpRequest = new XMLHttpReques...
Ajax+ASP和Flash+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源码 -
常用CSS集合
【CSS/HTML】/**//*按钮样式*/ .ButtonCSS {}{ font-family: "Tahoma", "宋体"; font-size:9pt; color: #003399; border: 1px #003399 solid; color:006699; &...
常用CSS集合 -
用JAVASCRIPT帮我写个计数器
【ASP编程】你们能用JAVASCRIPT帮我写个计数器吗?要带文本的那种,我在ASP那里要用呀?拜托.......... 我自己写了一个,是不带文本的,谁能帮我弥补一下呢? <%@ Language=Jscript %> &...
用JAVASCRIPT帮我写个计数器 -
按ID号发布文章(精)
【整站程序】今天终于把按文章ID生成静态文章搞定了,相信许多朋友应该需要,为发布文章节约不少时间. 此主题相关图片如下: 第一步:在Admin\Include\refreshhtml.asp文件的第90行下面插入下面代码 Response.Write " <form action=""RefreshHtmlSave.asp?Types=Content&RefreshFlag=AID&ChannelID=...
按ID号发布文章(精) -
用VB生成DLL封装ASP连接数据库的代码
【ASP编程】这篇文章以VB生成的DLL封装ASP代码来连接数据库(以Access数据库为例)。 一般情况下我们在用ASP连接Access的数据库时通常都会进行如下的操作 '//Proconn.asp <% dim ProConn set ProConn=Server.CreateObject("ADODB.CONNECTION") ProConn.Open "driver...
用VB生成DLL封装ASP连接数据库的代码