buyer_state.asp
来自「适用于网络/信息企业」· ASP 代码 · 共 99 行
ASP
99 行
<!--#include file="../INC/Conn.asp"-->
<!--#include file="inc/Check.asp"-->
<!--#include file="inc/public.asp"-->
<%
dim Makking
Makking = Trim(Request.QueryString("Makking"))
'---------------------------------
select case Makking
case "save"
Conn.Execute("upDate Buyer_Info Set Buyer_Estate = '"& Request.Form("Buyer_Estate") &"' Where Buyer_ID = '"& Request.QueryString("ID") &"'")
Response.Write "<script>window.opener.location.reload();window.close();</script>"
Response.End
case ""
Set Rs = Conn.Execute("Select * From Buyer_Info Where Buyer_ID='"& Request.QueryString("ID") &"'")
IF Not(Rs.Bof AND Rs.eof) Then
Buyer_Estate = Rs("Buyer_Estate")
End if
Rs.Close
Set Rs = Nothing
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>亿博尔-客户关系管理系统</title>
</head>
<link href="Images/Admin.css" rel="stylesheet" type="text/css">
<body>
<table width="98%" height="40" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#D8D8D8">
<tr>
<td height="30" align="left" bgcolor="ffffff"><table width="100%" height="100%" border="0" cellpadding="3" cellspacing="0">
<tr bgcolor="eeeeee">
<td width="5%" align="center"><img src="Images/1.gif" width="13" height="12"></td>
<td width="85%"><span class="style2">管理中心 >>> 更改状态</span></td>
<td width="10%" align="right"> </td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
<table width="98%" height="80%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#D8D8D8">
<tr>
<td valign="top" bgcolor="ffffff"><table width="95%" border="0" align="center" cellpadding="5" cellspacing="0">
<tr>
<td align="center" valign="top" bgcolor="ffffff">
<form method='POST' name="form" action="Buyer_State.asp?Makking=save&ID=<%=Request.QueryString("ID")%>">
<br>
<table width=100% border=0 align='center' cellpadding=5
cellspacing=1 bordercolordark=#ffffff bgcolor="#EBEBEB" class='size09'>
<tr>
<td width="25%" height="25" align="right" bgcolor="ffffff">状态:</td>
<td height="25" bgcolor="ffffff">
<select name="Buyer_Estate">
<option value="正常" <%IF Buyer_Estate = "正常" Then%>selected<%End IF%>>正常</option>
<option value="更改" <%IF Buyer_Estate = "更改" Then%>selected<%End IF%>>更改</option>
<option value="注销" <%IF Buyer_Estate = "注销" Then%>selected<%End IF%>>注销</option>
</select> </td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td>·正常 指企业处理正常生产、发展的状态<br>
·更改 指企业已更改成其它的公司名称或机构<br>
·注销 指企业已存在</td>
</tr>
</table>
<p>
<input name="B1" type="image" src="Images/edit.gif" width="36" height="21" border="0">
<a href=""><img src="Images/back.gif" width="36" height="21" border="0" onClick="javascript:window.close()"></a></p>
</form></td>
</tr>
</table>
</td>
</tr>
</table>
<%end select
Conn.Close
Set Conn = Nothing
%>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="6"></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?