技术聚集
zaneabc
这个作者很懒,什么都没留下…
展开
-
ASP.NET程序中常用的三十三种代码
asp.net程序中最常用的三十三种编程代码,为初学者多多积累经验,为高手们归纳总结,看了觉得很有价值~,大家不妨参考下! 1. 打开新的窗口并传送参数: 传送参数: response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>")转载 2006-12-08 09:34:00 · 485 阅读 · 0 评论 -
ASP 编程中20个非常有用的例子
1.如何用Asp判断你的网站的虚拟物理路径 答:使用Mappath方法 The Physical path to this virtual website is: 2.我如何知道使用者所用的浏览器? 答:使用the Request object方法 strBrowser=Request.ServerVariables("HTTP_USER_AGENT") If Instr(strBrow转载 2006-12-13 09:17:00 · 620 阅读 · 0 评论 -
监视oracle执行的SQL语句
查询v$sqlselect * from v$sql twhere t.LAST_ACTIVE_TIME>(sysdate - interval '1' MINUTE) --执行1分钟内的SQL语句 and t.PARSING_SCHEMA_NAME = 'LSBIKE' --数据库 and (t.MODULE is null or t.MODULE not lik原创 2016-07-16 14:35:11 · 18527 阅读 · 1 评论 -
Android中利用ZipEntry漏洞实现免root写恶意文件到应用的沙盒中
http://blog.csdn.net/jiangwei0910410003/article/details/52118575版权声明:本文为博主原创文章,未经博主允许不得转载。目录(?)[-]一前言二漏洞场景分析三漏洞出现的原因四漏洞案例分析六问题延展七漏洞总结八总结一、前言Android中的漏洞真的很多,一不小心就踩到坑了,转载 2016-08-08 14:16:38 · 2061 阅读 · 1 评论