📄 am_ftm_ftmr.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_template "
strSQL=strSQL & " set template_name='" & Request.Form("template_name")
strSQL=strSQL & "', template_type=" & Request.Form("template_type_id")
strSQL=strSQL & " ,template_author_id='" & Session("UserID") &"'"
strSQL=strSQL & " where template_id = " & Request.QueryString("tid")
DBExecute strSQL
' Output Result
strSQL="select template_name,template_type_name,account_name "
strSQL=strSQL & " from t_flow_template a,t_flow_template_type b,v_user_account c "
strSQL=strSQL & " where a.template_type=b.template_type_id "
strSQL=strSQL & " and a.template_author_id=c.account_id "
strSQL=strSQL & " and a.template_id=" & Request.QueryString("tid")
DBQuery(strSQL)
%>
<p align=center>*******成功修改模板*********<br>
<table cellspacing=0 cellpadding=0 border=1 align=center width=400>
<tr align=center>
<td class=tdHead>模板名称</td>
<td class=tdHead>模板类型</td>
<td class=tdHead>创建者</td>
</tr>
<tr align=center>
<td> <%=oRs("template_name")%></td>
<td> <%=oRs("template_type_name")%></td>
<td> <%=oRs("account_name")%></td>
</tr>
</table>
<br>
<br>
<a href=am_ftm_ftm.asp?tid=<%=Request.QueryString("tid")%>>
<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 + -