ADO的基本操作(三)删除

  1. <!--#include file="inc/conn.asp"-->
  2. <%
  3. id=trim(request("id"))
  4. if id="" then
  5.    'response.Write("<a href='javascript:history.go(-1)'>返回</a>")
  6.    response.Write("<script>")
  7.    response.Write("alert('你是非法用户');")
  8.    response.Write("</script>")
  9.    response.Redirect("temp.asp")
  10.    response.End()
  11. end if
  12. sql="delete from blogItem where itemId="&cint(id)
  13. conn.execute(sql)
  14. response.Redirect("temp.asp")
  15. %>

你可能感兴趣的:(JavaScript,sql)