搜索列表
-
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教程错误处理
【ASP编程】The ASPError Object has zero (0) Methods, nine (9) Properties, zero (0) Events, and zero (0) Collections. AspCode AspDescription Category Column Description File Line Number SourceThe way you access the ASPError Properties is with a Server Method. Yeah, I know; it does...
javascriptasp教程错误处理 -
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对象 -
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对象 -
NET IIS暴绝对路径漏洞
【安全相关】Title:Microsoft ASP.NET May Disclose Web Directory to Remote Users in Certain Cases Description: If the ASP.NET application does not filter the error mes...
NETIIS暴绝对路径漏洞 -
激发你的灵感:50个优秀的Favicons
【CSS/HTML】原文:http://www.smashingmagazine.com/page/2/翻译:Blank(怿飞) Inspire Yourself: 50 Remarkable Favicons激发你的灵感:50个优秀的Favicons 引用:Actually it's a pity that many designers don't really make use of them. Favicons, mini graphics for a particular web-site, can be displayed in...
激发你的灵感:50个优秀的Favicons -
NET IIS暴绝对路径漏洞
【安全相关】Title:Microsoft ASP.NET May Disclose Web Directory to Remote Users in Certain Cases Description: If the ASP.NET application does not filter the error mes...
NETIIS暴绝对路径漏洞 -
ASP常用函数收藏乱七八糟未整理版
【ASP编程】<% '******************************************************************* '取得IP地址 '******************************************************************* Function Userip() Dim GetClientIP '如果客户端用了代理服务器,则应该用S...
ASP常用函数收藏乱七八糟未整理版 -
[转]XMLHTTPRequest的属性和方法简介
【ASP编程】1、XMLHTTPRequest对象什么是? 最通用的定义为:XmlHttp是一套可以在Javascript、VbScript、Jscript等脚本语言中通过http协议传送或从接收XML及其他数据的一套API。XmlHttp最大的用处是可以更新网页的部分内容而不需要刷新整个页面。(这个功能正是AJAX的一大特点之一:)) 来自MSDN的解释:X...
[转]XMLHTTPRequest的属性和方法简介 -
ASP编程入门进阶(十八):FSO组件之文件操作(上)
【ASP编程】FSO中除了可以对驱动器、文件夹的操作以外,功能最强大的就是对文件的操作了。它可以用来记数、内容管理、搜索还可生成动态HTML页面等等。一、fso.OpenTextFile无需多说,fso.OpenTextFile就是打开某个文件了,一般情况之下是打开的txt文本文件。所以首先我们先建立一个txt文件,然后通过FSO来读取其中的内容。...
ASP编程入门进阶(十八):FSO组件之文件操作(上) -
ASP编程入门进阶(十八):FSO组件之文件操作(下)
【ASP编程】一,fso.GetFile提取文件相应的 File 对象1,getfile.asp <%whichfile=Server.MapPath("cnbruce.txt")Set fso = CreateObject("Scripting.FileSystemObject")Set f1 = fso.CreateTextFile(whichfile,true)f1.Write ("This is a test.My Name is cnbruce.")f1.CloseSet f2 = fso.GetFile(whi...
ASP编程入门进阶(十八):FSO组件之文件操作(下)