www.gusucode.com > 深度梦想整站系统(asp) 1.14.02源码程序 > admin/product/product_Del.asp

    <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
projectRootPath = "../../"	'相对当前应用程序根的位置
%>
<!-- #include file="../web.config.asp"-->


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta name="robots" content="noindex,nofollow" />
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>管理</title>
    
    <link href="../themes/<%=theme_Path%>/main.css" rel="stylesheet" type="text/css" />

</head>

<body  id="bodyBg1">
<br />
&nbsp; <a href="product_Manage.asp">产品管理</a> | <a href="product_Add.asp">添加产品</a>
<hr color="#0099FF" size="1" />
<br />

<dl class="manageContent">
    <dt>产品管理</dt>
    <dd>
    	<br />
        <%
		id=Request.QueryString("id")
		if(id<>"")then
			conn.execute("delete from deep_Product where fid="&id)
			Response.Write("删除成功!!")
		else
			Response.Write("删除不成功!!")
		end if
		%>
        <br />
    </dd>
</dl>
<br />
</body>
</html>
<%
call closeConnDB()
%>