📄 sadisp.asp
字号:
<%response.expires=0%>
<%Response.Buffer=true%>
<!-- #include file="../conn_lr.asp"-->
<!-- #include file="../css.asp"-->
<%
oabusyname=request.cookies("oabusyname")
oabusyusername=request.cookies("oabusyusername")
oabusyuserdept=request.cookies("oabusyuserdept")
oabusyuserlevel=request.cookies("oabusyuserlevel")
if oabusyusername="" then
response.write("<script language=""javascript"">")
response.write("window.top.location.href='../../default.asp';")
response.write("</script>")
response.end
end if
%>
<html>
<head>
<title>同行信息管理</title>
<!-- #include file="../inc/css.asp" -->
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<% dim Number,opFlag,title,image
on error resume next
Server.ScriptTimeOut =4
Number=cint(request("Number"))
opFlag=request("opFlag")
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open Session("SQL"),Session("conn"),1,3
rs.move number
title="详细同行信息"
image="../images/sainfo.gif"
%>
<style>
.css0{<%=vinputtext%>;border:none;}
</style>
</head>
<body>
<form name="submitinput" action="sasave.asp?opFlag=<%=opFlag%>&Number=<%=Number%>" method="post" >
<!-- #include file="../inc/title.asp" -->
<table width="95%" bgcolor=<%=Session("vtablebordercolor")%> border=0 class=vtext align="center" cellspacing="1">
<tr>
<td width="120" align="right" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">公司名称:</td>
<td colspan="3" width="549" bgcolor=<%=Session("vcolcolor")%>>
<p align="left"><%=rs("Company")%>
</p>
</td>
</tr>
<tr>
<td align="right" width="120" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">注册资金:</td>
<td width="220" bgcolor=<%=Session("vcolcolor")%>><%=rs("Smoney")%>万元
</td>
<td width="120" bgcolor=<%=Session("vtabletitlebackcolor")%>>公司规模:</td>
<td width="161" bgcolor=<%=Session("vcolcolor")%>><%=rs("Mans")%>人
</td>
</tr>
<tr>
<td align="right" width="120" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">市场定位:</td>
<td colspan="3" width="549" bgcolor=<%=Session("vcolcolor")%>><%=rs("Market")%>
</td>
</tr>
<tr>
<td align="right" width="120" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">公司地址:</td>
<td colspan="3" width="549" bgcolor=<%=Session("vcolcolor")%>><%=rs("Sadd")%>
</td>
</tr>
<tr>
<td align="right" width="120" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">联系电话:</td>
<td width="220" bgcolor=<%=Session("vcolcolor")%>><%=rs("Phone")%>
</td>
<td width="156" bgcolor=<%=Session("vtabletitlebackcolor")%>>传真:</td>
<td width="161" bgcolor=<%=Session("vcolcolor")%>><%=rs("Fax")%>
</td>
</tr>
<%if rs("Web")<>"" then %>
<tr>
<td align="right" width="120" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">网 址:</td>
<td colspan="3" width="549" bgcolor=<%=Session("vcolcolor")%>><a href="<%=rs("Web")%>"><%=rs("Web")%><font color="#008000"> 查看</font></a>
</td>
</tr>
<% end if %>
<%if rs("Mail")<>"" then %>
<tr>
<td align="right" width="120" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">电子邮件:</td>
<td colspan="3" width="549" bgcolor=<%=Session("vcolcolor")%>>
<a href="mailto:<%=rs("Mail")%>"><%=rs("Mail")%> <font color="#008000"> 写信</font> </a>
</td>
</tr>
<% end if %>
<tr>
<td align="right" width="120" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">经营状况:</td>
<td colspan="3" width="549" bgcolor=<%=Session("vcolcolor")%>><%=rs("State")%></td>
</tr>
<tr>
<td align="right" width="120" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">经营模式:</td>
<td colspan="3" width="549" bgcolor=<%=Session("vcolcolor")%>><%=rs("Model")%> </td>
</tr>
<tr>
<td align="right" width="120" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">经营范围:</td>
<td colspan="3" width="549" bgcolor=<%=Session("vcolcolor")%>><%=rs("Area")%>
</td>
</tr>
<tr>
<td align="right" width="120" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">产品对比:</td>
<td colspan="3" width="549" bgcolor=<%=Session("vcolcolor")%>><%=rs("Name")%> </td>
</tr>
<tr>
<td align="right" width="120" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">公司简介:</td>
<td colspan="3" width="549" bgcolor=<%=Session("vcolcolor")%>><%=rs("Introduction")%></td>
</tr>
<tr>
<td align="right" width="120" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">核心人物介绍:</td>
<td colspan="3" width="549" bgcolor=<%=Session("vcolcolor")%>><%=rs("Chairman")%> </td>
</tr>
<tr>
<td align="right" width="120" bgcolor=<%=Session("vtabletitlebackcolor")%> height="25">成功案例:</td>
<td colspan="3" width="549" bgcolor=<%=Session("vcolcolor")%>><%=rs("Example")%>
</td>
</tr>
</table>
<table cellspacing=0 cellpadding=0 width=393 border=0 align="center">
<tr>
<td width="863">
<p align=center>
<br>
<button class=vinputbutton style="height=24" onClick="window.location.href='saprint.asp?Number=<%=Number%>'"><img src="../images/print.gif" align="absmiddle"> 打印</button>
<button class=vinputbutton style="height=24" onClick="javascript:history.go(-1);"><img src="../images/back.gif" align="absmiddle"> 返回</button>
</p> <p> </p>
</td>
</tr>
</table>
</form>
<% rs.close
set rs=nothing
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -