4,007
社区成员
发帖
与我相关
我的任务
分享
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../Connections/conn.asp" -->
<%
' *** Edit Operations: declare variables
Dim MM_editAction
Dim MM_abortEdit
Dim MM_editQuery
Dim MM_editCmd
Dim MM_editConnection
Dim MM_editTable
Dim MM_editRedirectUrl
Dim MM_editColumn
Dim MM_recordId
Dim MM_fieldsStr
Dim MM_columnsStr
Dim MM_fields
Dim MM_columns
Dim MM_typeArray
Dim MM_formVal
Dim MM_delim
Dim MM_altVal
Dim MM_emptyVal
Dim MM_i
MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (Request.QueryString <> "") Then
MM_editAction = MM_editAction & "?" & Server.HTMLEncode(Request.QueryString)
End If
' boolean to abort record edit
MM_abortEdit = false
' query string to execute
MM_editQuery = ""
%>
<%
' *** Delete Record: declare variables
if (CStr(Request("MM_delete")) = "form1" And CStr(Request("MM_recordId")) <> "") Then
MM_editConnection = MM_conn_STRING
MM_editTable = "进口原料"
MM_editColumn = "商品编码"
MM_recordId = "'" + Request.Form("MM_recordId") + "'"
MM_editRedirectUrl = "yuanliao_edit_delete_success.asp"
' append the query string to the redirect URL
If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If
End If
%>
<%
' *** Delete Record: construct a sql delete statement and execute it
If (CStr(Request("MM_delete")) <> "" And CStr(Request("MM_recordId")) <> "") Then
' create the sql delete statement
MM_editQuery = "delete from " & MM_editTable & " where " & MM_editColumn & " = " & MM_recordId
If (Not MM_abortEdit) Then
' execute the delete
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)
End If
End If
End If
%>
<%
Dim Recordset1__MMColParam
Recordset1__MMColParam = "1"
If (Request.QueryString("商品编码") <> "") Then
Recordset1__MMColParam = Request.QueryString("商品编码")
End If
%>
<%
Dim Recordset1
Dim Recordset1_numRows
Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_conn_STRING
Recordset1.Source = "SELECT * FROM 进口原料 WHERE 商品编码 = '" + Replace(Recordset1__MMColParam, "'", "''") + "'"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 3
Recordset1.Open()
Recordset1_numRows = 0
%>
<!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 http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>原料删除</title>
<style type="text/css">
<!--
.STYLE13 {font-size: 15px}
-->
</style>
</head>
<body>
<p> </p>
<form id="form1" name="form1" method="POST" action="<%=MM_editAction%>">
<table width="309" border="1" align="center" cellpadding="3" cellspacing="0" bordercolor="#99CCFF">
<tr>
<td width="145" align="left"><div align="right" class="STYLE13">
<div align="right">手册编号:</div>
</div></td>
<td width="146" align="left"><div align="left" class="STYLE13"><%=(Recordset1.Fields.Item("手册编号").Value)%></div></td>
</tr>
<tr>
<td align="left"><div align="right" class="STYLE13">
<div align="right">商品编码:</div>
</div></td>
<td align="left"><div align="left" class="STYLE13"><%=(Recordset1.Fields.Item("商品编码").Value)%></div></td>
</tr>
<tr>
<td align="left"><div align="right" class="STYLE13">
<div align="right">附加编码:</div>
</div></td>
<td align="left"><div align="left" class="STYLE13"><%=(Recordset1.Fields.Item("附加编码").Value)%></div></td>
</tr>
<tr>
<td align="left"><div align="right" class="STYLE13">
<div align="right">商品名称:</div>
</div></td>
<td align="left"><div align="left" class="STYLE13"><%=(Recordset1.Fields.Item("商品名称").Value)%></div></td>
</tr>
<tr>
<td align="left"><div align="right" class="STYLE13">
<div align="right">规格型号:</div>
</div></td>
<td align="left"><div align="left" class="STYLE13"><%=(Recordset1.Fields.Item("规格型号").Value)%></div></td>
</tr>
<tr>
<td align="left"><div align="right" class="STYLE13">
<div align="right">计量单位:</div>
</div></td>
<td align="left"><div align="left" class="STYLE13"><%=(Recordset1.Fields.Item("计量单位").Value)%></div></td>
</tr>
<tr>
<td align="left"><div align="right" class="STYLE13">
<div align="right">法定计量单位:</div>
</div></td>
<td align="left"><div align="left" class="STYLE13"><%=(Recordset1.Fields.Item("法定计量单位").Value)%></div></td>
</tr>
<tr>
<td align="left"><div align="right" class="STYLE13">
<div align="right">申报数量:</div>
</div></td>
<td align="left"><div align="left" class="STYLE13"><%=(Recordset1.Fields.Item("申报数量").Value)%></div></td>
</tr>
<tr>
<td align="left"><div align="right" class="STYLE13">
<div align="right">申报单价:</div>
</div></td>
<td align="left"><div align="left" class="STYLE13"><%=(Recordset1.Fields.Item("申报单价").Value)%></div></td>
</tr>
</table>
<div align="center">
<p>
<input type="submit" name="Submit" value="删除" />
</p>
</div>
<input type="hidden" name="MM_delete" value="form1">
<input type="hidden" name="MM_recordId" value="<%= Recordset1.Fields.Item("商品编码").Value %>">
</form>
</body>
</html>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>