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

📄 economiclaw_show4.asp

📁 OFFICE办公自动化
💻 ASP
字号:
<%
'==============================================================
'OA 表单生成器
'版本: 1.1.0 -- 2005-5-24
'程序版权:(c) 2004 by 展亮
'说明:本代码为自由代码,用户可以自由使用,但请保留作者文件头部说明
'   在使用过程中如出现什么问题请及时与作者联系。
'   电子邮件:zlbox@yeah.net QQ:2343397
'=============================================================
'功能:添加/编辑工商户
'参数:	request.form("addedit_subed")="true"#表单提交; request("id")#要编辑记录的ID;
'=============================================================
%>

<!--#include file="../inc/Secure.asp"-->
<!--#include file="../inc/conn.asp"-->
<!--#include file="../inc/Const.asp"-->
<!--#include file="../inc/ronger.asp"-->

<%
'response.buffer=false
'------------------------------------------------设置参数
LoginID=clng(trim(Session("LoginID"))) '当前用户ID
pid=clng(request("id")) '记录ID
'------------------------------------------------
'------------------------------------------------添加/修改记录
table="EconomicLaw_guapai" '表名
'------------------------------------------------
'--------------------------------------------取记录
set rs=Server.CreateObject("ADODB.RecordSet")
sql="select * from " & table & " where ID="&pid
rs.open sql,oConn,1,1
'------------------------------------------------
function showvalue(field)
	if rs.eof then
		showvalue=""
	else
		if (isnull(rs(field))) then showvalue="" else showvalue=Server.HTMLEncode(rs(field))
	end if
end function
%>


<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="../css/main.css" type=text/css>
<title>main</title>
<script src="../js/Popup.js"></script>
<script src="../js/formatdate.js"></script>
<script src="../js/front_chec.js"></script>
<script src="../js/user_select.js"></script>
<script language="JavaScript">
<!--
 function select_users(f_xm,f_id){
	strtmpusers = SelectUsers(f_id.value);
	if (strtmpusers != "") {
		strtmpusers=strtmpusers.split("_")
		f_id.value=strtmpusers[0]
		f_xm.value=strtmpusers[1]
	}
 }
-->
</script>
</head>

<body topmargin="10" leftmargin="10">

<!--#include file="EconomicLaw_menu4.html"-->

<hr width="100%" size=1 color="#000000">
<br>
<div align="center">
<table width="500" cellspacing="1" cellpadding="2" class="tab">
  <tr>
    <td class="tdTop">
      <table border="0" width="500" cellspacing="0" cellpadding="0">
        <tr>
          <td class="tdTop">
            <p align="left"><img border="0" src="../images/icon_title.gif" align="left">查看行政强制措施备案记录</p>
          </td>
          <td width="90" class="tdTop">
            <p align="left"><img border="0" src="../images/icon_return.gif" align="left">
            <a href="javascript:history.back()" class="linkTop">返回列表</a>
          </td>
        </tr>
      </table>
    </td>
  </tr>
  <tr>
    <td class="td1">

    <form name="eventfrm" method="POST" action="?id=<%=pid%>">
      <input type=hidden name="addedit_subed" value="true">
      <table border="0" width="500" cellspacing="10" cellpadding="0">
        <tr>
          <td width="145" align="right" valign="top" nowrap>案件名称:</td>
          <td width="325" nowrap><%=showvalue("ajmc")%></td>
        </tr>
        <tr>
          <td align="right" valign="top" nowrap>办理期限:</td>
          <td nowrap><%=showvalue("blqx")%></td>
        </tr>
        <tr>
          <td align="right" valign="top" nowrap>办案人员:</td>
          <td nowrap><%=showvalue("bary")%></td>
        </tr>
        <tr>
          <td align="right" valign="top" nowrap>办案单位:</td>
          <td nowrap><%=showvalue("badw")%></td>
        </tr>
        <tr>
          <td align="right" valign="top" nowrap>备注:</td>
          <td nowrap><%=showvalue("bz")%></td>
        </tr>
        <tr>
          <td colspan="2" align="center">&nbsp;</td>
        </tr>
      </table>

    </form>

    </td>
  </tr>
  <tr>
    <td width="25%" class="tdBottom">
    </td>
  </tr>
</table>
</div>
</body>

</html>

<%'释放对象变量
rs.close
oConn.close
%> 

⌨️ 快捷键说明

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