⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 g_plandel.asp

📁 一个很好的在线购物系统
💻 ASP
字号:

<!--#include file="../include/Pubconn.asp"-->
  <%
 '*********************************
 '
 'Author:Ruphi  Update Time:2001-08-30
 '功能:计划活动中多个删除,当未选择一条记录时, 不进行删除操作
 '
 '*************************************
 Response.Buffer=FALSE
 

%>
<%
flag=request("flag")  '从跟进计划明细表单中传过来的标志

if request.form("xz").count<1 then
   if flag="1"  then
      response.Redirect("G_plandetail.asp")
   else
      response.Redirect("G_mainplan.asp")
   end if 
   response.end

else
   
    for n=1 to request.form("xz").count    
    
     '将对应的字段名值取出来    
      xh=request.form("xz")(n)   
      pid=request("pid"&xh) 
     'set rsplan=Server.CreateObject("ADODB.recordSet")
      sql="Delete  from G_TblClosePlan where ID="&cint(pid)
      Pubconn.execute(sql)
      
    next    
end if
%>
                                   
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>客户跟进计划主界面</title><link href="cread.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#FFFFFF" >
 
<p align="center">
 
成功删除!
<%if flag="1" then%>
    <a  href="G_Plandetail.asp">返回</a>
<%else%>
<a  href="G_mainPlan.asp">返回</a>
<%end if%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -