📄 demand_modi.asp
字号:
<!--#include file="../config.asp"-->
<!--#include file="../inc/check_login.asp"-->
<!--#include file="../inc/functions.asp"-->
<%
Application_ID = 1001500 '本功能编号,含义请查看编码表
if not CheckAuth(Session("Employee_ID"),Application_ID) then '验证权限
Server.Transfer "../err/un_authorized.htm"
response.end
end if
%>
<!--**************身份验证部分****************-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK rel="stylesheet" type="text/css" href="../style.css">
</head>
<body>
<%
Demand_ID = request("Demand_ID")
if not IsNot(Demand_ID,"n") then
response.write "记录编号丢失"
response.end
end if
Set conn = Server.CreateObject("ADODB.Connection")
Set rs = Server.CreateObject("ADODB.Recordset")
conn.open connstr
'取得客户回访记录
sql = "sp_Customer_Get_Demand " & Demand_ID
set rs = conn.execute(sql)
if not rs.eof then
Demand_Item = rs("Demand_Item")
Demand_Account = rs("Demand_Account")
Description = rs("Description")
else
response.write "没有该需求记录"
response.end
end if
rs.close
set rs = nothing
conn.close
set conn = nothing
%>
<form action="demand_modi_exe.asp" method="post" name="frm">
<input type="hidden" name="Demand_ID" value="<%=Demand_ID%>">
修改客户需求
<hr size=1>
<table border=0 cellpadding=1 cellspacing=1>
<tr>
<td bgcolor="#EFEFEF">需求项目</td><td><input type="text" name="Demand_Item" size="16" value="<%= Demand_Item %>"></td>
<td bgcolor="#EFEFEF">大约金额</td><td><input type="text" name="Demand_Account" size="16" value="<%= Demand_Account %>"></td>
</tr>
<tr>
<td bgcolor="#EFEFEF">简要说明</td><td colspan=3><input type="text" name="Description" size="50" value="<%= Description %>"></td>
</tr>
</table>
<input type="submit" name="Submit" value="确定添加">
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -