虫虫首页|资源下载|资源专辑|精品软件
登录|注册

COOKIEs

  • jquery cookie 插件 控制COOKIEs的操作

    jquery cookie 插件 控制COOKIEs的操作

    标签: COOKIEs jquery cookie 插件

    上传时间: 2013-12-23

    上传用户:haohaoxuexi

  • COOKIEs登陆验证 刚做好的 里显示了 怎么实现自动登陆和 cookie里面取值放值等信息

    COOKIEs登陆验证 刚做好的 里显示了 怎么实现自动登陆和 cookie里面取值放值等信息

    标签: COOKIEs cookie 自动

    上传时间: 2017-05-06

    上传用户:yyyyyyyyyy

  • simple program can be used to understand creating sesion and COOKIEs in java servlet.

    simple program can be used to understand creating sesion and COOKIEs in java servlet.

    标签: understand creating program COOKIEs

    上传时间: 2017-07-14

    上传用户:xiaoxiang

  • 蓝丽Net留言系统说明手册 1:蓝丽Net留言系统亮点提示 蓝丽Net留言系统虽然开发的时间较短

    蓝丽Net留言系统说明手册 1:蓝丽Net留言系统亮点提示 蓝丽Net留言系统虽然开发的时间较短,但实为技术内涵较高,有其独特的风格特点 主要用途:使访客自由留言,管理员(站长)自由回复,或用于信息发布,资料存储 综合特点(采用较新的asp.net+xml+xsl设计,一应功能俱全,老搭档新品种该有的功能都有了 版面清爽,速度流畅,操作方便,安全稳定,安装管理方便,占用资源少,占用空间少 PS:FYW真能吹^-^) 性能方面:普通PC机访问本系统主页,能够达到50-200MS,这方面Xml若逊于Html方式输出的速度 安装方面:非常简单,几乎无需改动或根据您的要求少加改动,上传至服务器即可正常运行 安全方面:在本人已知的Asp,Asp.net存在的(数据提交,Sql注入,COOKIEs欺骗,跨站提交,注水提交)等安全隐患上下了许多工夫,经仔细测试在这些方面约能达到98%的安全,至于 本人未接触到的安全隐患方面,请自行升级或提示本人改正 2:安装调试蓝丽Net留言系统 ---既然看到了本帮助文件,那相信此时您已将本系统压缩包(rar,zip)解压 ---首先,请确认您的服务器操作系统支持运行Asp.net,IE版本在5.5以上,或者您有远程虚拟主机

    标签: Net

    上传时间: 2013-12-14

    上传用户:天涯

  • An object based tree widget, emulating the one found in microsoft windows, | | with persistence usi

    An object based tree widget, emulating the one found in microsoft windows, | | with persistence using COOKIEs. Works in IE 5+, Mozilla and konqueror 3.

    标签: persistence emulating microsoft windows

    上传时间: 2016-01-29

    上传用户:qiao8960

  • This package provides a complete http client library. It currently implements most of the relevant p

    This package provides a complete http client library. It currently implements most of the relevant parts of the HTTP/1.0 and HTTP/1.1 protocols, including the request methods HEAD, GET, POST and PUT, and automatic handling of authorization, redirection requests, and COOKIEs. Furthermore the included Codecs class contains coders and decoders for the base64, quoted-printable, URL-encoding, chunked and the multipart/form-data encodings. The whole thing is free, and licenced under the GNU Lesser General Public License (LGPL) (note that this is not the same as the GPL).

    标签: implements currently complete provides

    上传时间: 2014-01-16

    上传用户:siguazgb

  • 查看网络的好工具

    查看网络的好工具,可以查看POST数据,参数,COOKIEs

    标签: 网络

    上传时间: 2016-11-07

    上传用户:qwe1234

  • BleachBit 删除了不必要的文件(例如缓存器

    BleachBit 删除了不必要的文件(例如缓存器,临时文件和COOKIEs记录)以释放空间和维护隐私。它支持各种应用程序包括Firefox, Flash, Java, and OpenOffice.org.

    标签: BleachBit 删除 缓存器

    上传时间: 2014-11-24

    上传用户:xsnjzljj

  • asp实现限制一个ip只能访问一次的方法

    asp实现限制一个ip只能访问一次的方法 <%  '/////////////////////////////////////////////////////  '// //  '//作用:一个IP地址只允许访问本页一次 //  '//引用:<!-- #include file="Check_Ip.asp" --> //  '// //  '/////////////////////////////////////////////////////    'Response.Charset = 936 '设置输出编码为简体中文  'Response.Buffer = false '关闭缓冲区    Dim Fso,ts,IpList,Cfs    '设置COOKIEs函数  Function SetCookie()  Response.COOKIEs("IsBrow") = "Brow" Response.COOKIEs("IsBrow").Expires = Date+365  End Function    '记录IP地址函数  Function WriteIp(FileName, IpAddress)  Set Fso = Server.CreateObject("Scripting.FileSystemObject")  Set ts = Fso.OpenTextFile(Server.MapPath(FileName),8,true)  ts.WriteLine IpAddress  ts.Close  Set ts = Nothing  Set Fso = Nothing  End Function    '读取IP地址函数  Function ReadIpList(FileName)  Set Fso = Server.CreateObject("Scripting.FileSystemObject")  If Not Fso.FileExists(Server.MapPath(FileName)) Then  CreateFile("Iplist.txt")  Exit Function  End If    Set ts = Fso.OpenTextFile(Server.MapPath(FileName))  Iplist = ts.ReadAll  ts.Close  Set ts = Nothing  Set Fso = Nothing  ReadIpList = Iplist  End Function    '创建文件函数  Function CreateFile(FileName)  Set Fso = Server.CreateObject("Scripting.FileSystemObject")  Set Cfs = Fso.CreateTextFile(Server.MapPath(FileName))  Cfs.Close  Set Cfs = Nothing  Set Fso = Nothing  End Function    '关闭当前IE窗口函数(注:IE6下通过,其他浏览器未测试)  Function CloseWindow()  'Response.Write "<script>window.location='javascript:window.opener=null;window.close();'</script>"  Response.Redirect "http://www.baidu.com" End Function    Ip = Request.ServerVariables("REMOTE_ADDR") '获取浏览者IP地址    Cookie = Request.COOKIEs("IsBrow") '获取当前COOKIEs  'Response.Write Cookie    If Request.ServerVariables("HTTP_X_FORWARDED_FOR") <> "" Then  Response.Write "本站不允许使用代理访问" Response.End()  Else  If Cookie = "Brow" Then  CloseWindow()  Else  If Instr(ReadIpList("Iplist.txt"),Ip) <>0  Then  CloseWindow()  Else  WriteIp "Iplist.txt" , Ip  End If  SetCookie()  End If  End If  %>

    标签: asp 访问

    上传时间: 2016-07-14

    上传用户:helei0915