有朋友问我如何在ASP中实现让IE后退时不取出Cache里的内容,现在我告诉大家只要把下面的语句Copy到ASP的<head>...</head>就可以了: <% Response.Buffer=true Response.Expires=0 Response.CacheControl="no-cache" %>
显示一个Form中的所有内容
如果想把上个网页<Form>.....</Form>内的所有内容显示出来,有这样两种方法:
1、以for each .. in .. <% for each name in Request.form Response.write("<br>" & name & "=") Response.write(Request.form(name)) next %>
上面这个程序将显示出上个网面中的所有Form内容。
2、以for i=1 to Request.form.count
<% for i=1 to request.form.count Response.write("<br>"& Request.form(i) next %> |