bs_coprofile.asp

来自「此系统都是基于ASP+ACCESS技术开发的电子商务平台,属于全自动化、全智能的」· ASP 代码 · 共 95 行

ASP
95
字号
<!--#include file="bsconfig.asp"-->
<%
'=================================
'
'   冠龙科技 公司(企业)网站管理系统
'    Apollo  postxml@yahoo.com.cn 
'        www.xnhost.cn
'
'  copyright(c)2006 LkStar
'
'=================================
%>
<%Profile=server.htmlencode(Trim(Request("Profile"))) %>
<%EnProfile=server.htmlencode(Trim(Request("EnProfile"))) %>
<%if Request.QueryString("no")="eshop" then
set rs=server.createobject("ADODB.Recordset")
sql="select * from main"
rs.open sql,conn,3,3
rs("Profile")=Profile
rs("EnProfile")=EnProfile
rs.update
rs.close
response.redirect "Bs_CoProfile.asp"
end if
sql="select * from main"
Set rs_home= Server.CreateObject("ADODB.Recordset")
rs_home.open sql,conn,1,1
%>
<!-- #include file="Inc/Head.asp" -->
<BR>
<table cellpadding="2" cellspacing="1" border="0" width="560" align="center" class="a2">
	<tr>
		<td class="a1" height="25" align="center"><strong>公 司 简 介 设 置</strong></td>
	</tr>
	<tr class="a4">
		<td align="center">
			<form method="POST" action="Bs_CoProfile.asp?no=eshop">
			<table width="550" border="0" cellspacing="2" cellpadding="0">
				<tr> 
				<td width="19%" height="300" bgcolor="#C0C0C0"> <div align="center">中文信息设置<BR><BR>支持UBB代码</div></td>
				<td width="81%" bgcolor="#E3E3E3">
<textarea name="Profile" cols="58" rows="15">
<%
if rs_home("html")=false then
Profile=replace(rs_home("Profile"),"<br>",chr(13))
Profile=replace(Profile,"&nbsp;"," ")
else
Profile=rs_home("Profile")
end if
response.write Profile
%>
</textarea></td>
				</tr>
				<tr> 
					<td>&nbsp;</td>
					<td>&nbsp;</td>
				</tr>
				<tr> 
				<td width="19%" height="300" bgcolor="#C0C0C0"> <div align="center">English信息设置<BR><BR>支持UBB代码</div></td>
				<td width="81%" bgcolor="#E3E3E3">
<textarea name="EnProfile" cols="58" rows="15">
<%
if rs_home("html")=false then
EnProfile=replace(rs_home("EnProfile"),"<br>",chr(13))
EnProfile=replace(EnProfile,"&nbsp;"," ")
else
EnProfile=rs_home("EnProfile")
end if
response.write EnProfile
%>
</textarea></td>
				</tr>
				<tr> 
					<td>&nbsp;</td>
					<td>&nbsp;</td>
				</tr>
				<tr> 
					<td colspan="2"><div align="center"
><input type="submit" value=" 修 改 "	 name="cmdok">&nbsp;<input type="reset" value=" 重 写 " name="cmdcancel"></div></td>
				</tr>
				<tr>
					<td colspan="2">图片上传</td>
				</tr>
				<tr>
					<td colspan="2"><div align="center"
><iframe name="ad" frameborder=0 width=100% height=25 scrolling=no src=../uploada.asp></iframe></div></td>
				</tr>
			</table>
			</form>
		</td>
	</tr>
</table>
<BR>
<%htmlend%>

⌨️ 快捷键说明

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