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

📄 am_ftm_ftar.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
	'insert 
	strSQL="insert into t_flow_template (template_name,template_type,template_author_id) values ('" 
	strSQL= strSQL & Request.Form("txtFtName") & "', " 
	strSQL= strSQL & Request.Form("template_type") & ","
	strSQL= strSQL & "'"& Session("UserID")&"') "
	DBExecute strSQL
    
	' Output Result
	strSQL="select template_id,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_name='" & Request.Form("txtFtName") & "'  " 
	DBQuery(strSQL)
%>

<p align=center>*******成功新增模板*********<br>

<table cellspacing=0 cellpadding=0 border=1 align=center width=400px>
<tr align=center>
	<td class=tdHead>模板名称</td>
	<td class=tdHead>模板类型</td>
	<td class=tdHead>创建者</td>
</tr>
<tr align=center>
	<td>&nbsp;<%=oRs("template_name")%></td>
	<td>&nbsp;<%=oRs("template_type_name")%></td>
	<td>&nbsp;<%=oRs("account_name")%></td>
</tr>
</table>


<%
	Response.Write("<a href='am_ftm_sa.asp?tid=" & oRs("template_id")&"'>")
%>
<img border=0 src="image/newform.gif" alt="新增流程模板步骤">新增流程模板步骤</a>
<%	
	' Close Recordset
	DBEndQuery

	DBDisconnect
%>

             
</body>
</html>

⌨️ 快捷键说明

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