asp做的删除和修改数据后,如何刷新页面?
就是现在我的删除后,是成功了,但是切查看的是删除的记录,所以就出现错误了!请问要怎么改?<%ifrequest.querystring("action")="del"th...
就是现在我的删除后,是成功了,但是切查看的是删除的记录,所以就出现错误了!请问要怎么改?
<%
if request.querystring("action")="del" then
dim id
id=request.querystring("id")
sql="delete from student where id='" & id & "'"
conn.Execute sql
end if
%>
<td align="center" width="5%"><a href="?id=<%=stu("id")%>&action=del">删除</a> </td> 展开
<%
if request.querystring("action")="del" then
dim id
id=request.querystring("id")
sql="delete from student where id='" & id & "'"
conn.Execute sql
end if
%>
<td align="center" width="5%"><a href="?id=<%=stu("id")%>&action=del">删除</a> </td> 展开
展开全部
<%
if request.querystring("action")="del" then
dim id
id=request.querystring("id")
sql="delete from student where id='" & id & "'"
conn.Execute sql
response.Redirect "返回的页面,注意不要带参数"
end if
%>
<td align="center" width="5%"><a href="?id=<%=stu("id")%>&action=del">删除</a> </td>
if request.querystring("action")="del" then
dim id
id=request.querystring("id")
sql="delete from student where id='" & id & "'"
conn.Execute sql
response.Redirect "返回的页面,注意不要带参数"
end if
%>
<td align="center" width="5%"><a href="?id=<%=stu("id")%>&action=del">删除</a> </td>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
当删除操作完成后,在conn.execute(sql)下边一行,用response.redirect("不带参数的文件名"),进行强制跳转就可以。或者用JS代码,也跳转到不带参数的文件名就行了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我给你发邮件了哦,别忘了加分啊哈
---------------------------------------------------
<%
if request.querystring("action")="del" then
dim id
id=request.querystring("id")
sql="delete from student where id='" & id & "'"
conn.Execute sql
%>
<script>
location="你写上本页面的URL";
</script>
<%
end if
%>
<td align="center" width="5%"><a href="?id=<%=stu("id")%>&action=del">删除</a> </td>
---------------------------------------------------
<%
if request.querystring("action")="del" then
dim id
id=request.querystring("id")
sql="delete from student where id='" & id & "'"
conn.Execute sql
%>
<script>
location="你写上本页面的URL";
</script>
<%
end if
%>
<td align="center" width="5%"><a href="?id=<%=stu("id")%>&action=del">删除</a> </td>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询