使用JScript遍历Request表单参数集合
程序员文章站
2023-08-26 16:45:55
复制代码 代码如下: var params = new enumerator(request.querystring); while (!params.atend()) {...
复制代码 代码如下:
var params = new enumerator(request.querystring);
while (!params.atend()) {
response.write(params.item() + ":" + request.querystring(params.item()) + "<br />");
params.movenext();
}
美中不足的是,request对象本身不是集合,所以不能对request对象进行遍历,下面这行代码会报错:
复制代码 代码如下:
var params = new enumerator(request);
下一篇: C#入门教程之ListBox控件使用方法