请教一个简单的问题:删除后返回原页面
各位大虾,请教一个问题,(我为这个问题已经写了三遍了)我通过多项查询后获得的结果有多页,我想对其中的某页的某个结果进行修改或删除,能不能进行修改或删除后,能自动返回原编辑的页面(我用的是模块化的分页调用,无法对获得页码,所以以提供页码方式返回的操作没法做),并对该页面进行刷新?请举例说明,谢谢!
很简单,使用 response.redirect Request.ServerVariables("HTTP_REFERER") 返回
例如:
<%
if request("update")="yes" then '添加
bianhao=request.form("bianhao")
times=request.form("times")
conn.execute "insert into dailian(bianhao,times,) values('"&bianhao&"','"×&"')"
response.redirect Request.ServerVariables("HTTP_REFERER")
end if
%>
if request("update")="yes" then '添加
bianhao=request.form("bianhao")
times=request.form("times")
conn.execute "insert into dailian(bianhao,times,) values('"&bianhao&"','"×&"')"
response.redirect Request.ServerVariables("HTTP_REFERER")
end if
%>
[此贴子已经被作者于2007-11-10 20:30:46编辑过]