查阅API文档,找到 add():增加一个元素。如果队列已满,则抛出一个IIIegaISlabEepeplian异常 Inserts the specified element at the tail of this queue. As the queue is unbounded, this me ...
分类:
编程语言 时间:
2020-05-31 16:02:19
阅读次数:
84
SELECT * from Member where EXISTS(SELECT * from Member where me_Account='admin') 如果红色有满足条件,则查询所有 ...
分类:
其他好文 时间:
2020-05-31 13:00:25
阅读次数:
37
1. Windows程序设计基础 1.1 代码风格 #include "stdafx.h" #include <windows.h> void Alert(int i); int main(int argc, char* argv[]) { Alert(2); return 0; } void Al ...
匿名函数: 定义:function(参数列表){ 要执行的语句块; } 定义名(); 创建日期对象:Date var date=new Date(); alert(date); 不输入则是默认月,日,年,时间 对象调用方法:对象名.方法名(实参列表); setDate();设置天 setMonth( ...
分类:
Web程序 时间:
2020-05-30 17:14:44
阅读次数:
80
ASP.NET上传文件用FileUpLoad就可以,但是对文件夹的操作却不能用FileUpLoad来实现。 下面这个示例便是使用ASP.NET来实现上传文件夹并对文件夹进行压缩以及解压。 ASP.NET页面设计:TextBox和Button按钮。 TextBox中需要自己受到输入文件夹的路径(包含文 ...
一、知识框架 二、课堂疑问解答 1、定义 ①typedef struct ②me:typedef struct { { char data; char data; int parent; int parent; }Node; }BiTNode; typedef struct int n; { cin ...
分类:
其他好文 时间:
2020-05-30 12:38:42
阅读次数:
105
//匿名函数// var f = function (){// alert("helloworld");// }// f(); new Date() 获取当前的时间 new Date(yyyy,month,dd hh:mm:ss) 获取某一年的时间 new Date(yyyy,mth,dd,hh,m ...
分类:
其他好文 时间:
2020-05-30 12:28:21
阅读次数:
66
stored_xss Stored XSS into HTML context with nothing encoded 题目要求 提交评论,调用alert函数 解题过程 直接祖传payload就行 Stored XSS into anchor href attribute with double ...
分类:
Web程序 时间:
2020-05-29 23:39:29
阅读次数:
181
reflected xss Reflected XSS into HTML context with nothing encoded 题目要求 调用alert函数 解题过程 请求: url/?search=asd 返回: <h1>0 search result for 'asd'</h1> 发现参数 ...
分类:
Web程序 时间:
2020-05-29 23:13:18
阅读次数:
89
一、行内式 1.行内式: 方式一: <button οnclick="alert('今天天气很好!');">今天天气?</button> 城市家具虽然可以写在标签的属性中,但是结构与行为耦合,不方便维护,不推荐使用 方式二: <a href="javascript:alert('你点疼我了!!'); ...
分类:
Web程序 时间:
2020-05-29 16:19:57
阅读次数:
98