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

📄 am_fm_smr.asp

📁 物业管理和办公自动化系统
💻 ASP
字号:
<!--#INCLUDE FILE="z_common.asp"-->
<html>
<head>
<title>修改流程步骤结果</title>
<style type="text/css">
<!-- @import url(../common.css); -->
</style>
</head>
<body>
<p>
<table cellspacing=0 cellpadding=0 align=center border=0 width=400>
<tr><td class=noborder><% MenuIndex %></td></tr>
</table>


<%
	MyDBConnect

	'update
	strSQL="update t_flow_step "
	strSQL=strSQL & " set step_op_person='" & Request.Form("account_id") 
	strSQL=strSQL & "', step_op_id=" & Request.Form("operation_id")
	strSQL=strSQL & "  ,step_desc='" & Request.Form("step_desc") &"'"
	strSQL=strSQL & " where flow_id = " & Request.QueryString("fid")
	strSQL=strSQL & " and step_no = " & Request.QueryString("sid")

	DBExecute strSQL

    
	' Output Result
	
	strSQL="select * from t_flow_step a,t_step_operation b,v_user_account c "
	strSQL=strSQL & " where a.step_op_id=b.operation_id "
	strSQL=strSQL & " and a.step_op_person=c.account_id "
	strSQL=strSQL & " and a.flow_id=" & Request.QueryString("fid") 
	strSQL=strSQL & " and a.step_no=" & Request.QueryString("sid")
	DBQuery(strSQL)
%>

<p align=center>*******成功修改步骤*********<br>

<table cellspacing=0 cellpadding=0 border=1 align=center width=400>
<tr><td class=tblTitle colspan=4>修 改 流 程 步 骤 结 果</td></tr>
<tr align=center>
	<td class=tdHead>步骤序号</td>
	<td class=tdHead>审批人</td>
	<td class=tdHead>步骤操作</td>
	<td class=tdHead>描   述</td>
</tr>
<tr align=center>
	<td>&nbsp;<%=oRs("step_no")%></td>
	<td>&nbsp;<%=oRs("account_name")%></td>
	<td>&nbsp;<%=oRs("operation_name")%></td>
	<td>&nbsp;<%=oRs("step_desc")%></td>
</tr>
</table>
<br>
<br>

<a href=am_fm_fm.asp?fid=<%=Request.QueryString("fid")%>>
<img border=0  src="image/RecordEdit.gif" alt="修改流程">继续修改流程</a>
<%	
	' Close Recordset
	DBEndQuery

	DBDisconnect
%>

             
</body>
</html>

⌨️ 快捷键说明

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