在删除页面中,选择是否继续。。。
请教各位大虾。我在删除页面中会对删除的项目做个判断,现在的问题是这样,如果我判断这个结果有了关联,但是希望此时能弹出一个对话框,是否继续执行?如果选择确定,则继续删除,选择取消,则返回原删除的页面。
这样该怎么做呢?请各位大虾指教!谢谢!
<a href="javascript:if(window.confirm('你确实要删除此条新闻吗?') == true){window.location = 'deleinfo.asp?id=<%=rs("id")%>';}">删除</a>-------------------------------------------------------------------
<%if session("name")="" then response.redirect("login.asp") <%end if%> <!--#include file="conn.asp"--> <% '删除留言 id = Request("id") Set Rs = Server.CreateObject("ADODB.RecordSet") Sql = "Select * From info Where id="&id Rs.Open Sql,conn,3,3 Rs.Delete Rs.Update Rs.Close Set Rs = nothing Response.Redirect "admin_info.asp" %>