关于response.end
response.write("<script>alert('提交成功');window.location.href='地址';</script>")response.end
这里为什么要加response.end,加了这个后面的语句不是不能执行了吗???哪位大哥知道啊???
2005-11-08 11:20
2005-11-08 11:21
不加response.end的话,上面那句输出脚本的语句会怎样呢?为什么?
2005-11-08 11:24
2005-11-08 11:25
2005-11-08 11:25
<%response.write "aa"%>
<script>
alert("bb");
</script>
<%response.write "cc"%>
这一段,编译器执行语句的顺序是怎么样的?
2005-11-08 14:00
2005-11-08 16:45
2005-11-08 16:54
response.end()它的作用就是停止执行呀!

2005-11-08 17:17
2005-11-08 18:18