📄 products_label_styleread.asp
字号:
<% Option Explicit %>
<!--#include file="../../FS_Inc/Const.asp" -->
<!--#include file="../../FS_Inc/Function.asp"-->
<!--#include file="../../FS_InterFace/MF_Function.asp" -->
<!--#include file="../../FS_InterFace/MS_Function.asp" -->
<!--#include file="../../FS_Inc/Func_page.asp" -->
<%
Response.Buffer = True
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
Dim Conn,obj_label_Rs,SQL,regEx,result
MF_Default_Conn
'session判断
MF_Session_TF
If Request("id")="" Then
Response.Write "<script language=""JavaScript"" type=""text/javascript"" src=""../../FS_Inc/PublicJs.js""></script>"&vbcrlf
Response.Write "<SCRIPT LANGUAGE=""JavaScript"">ShowErr(""错误:\n参数错误"");</SCRIPT>"
Response.End
End If
%>
<html>
<head>
<title>商城标签管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
<base target=self>
</head>
<body>
<script language="JavaScript" src="../../FS_Inc/PublicJS.js" type="text/JavaScript"></script>
<table width="98%" height="81" border="0" align="center" cellpadding="4" cellspacing="0">
<tr >
<td width="100%" align="center">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="table">
<%
Set obj_label_Rs = server.CreateObject(G_FS_RS)
SQL = "Select StyleName,Content,AddDate from FS_MF_Labestyle where id=" & Request.QueryString("id")
obj_label_Rs.Open SQL,Conn,1,3
if not obj_label_Rs.eof then
Set regEx = New RegExp '
regEx.Pattern = "<img(.+?){(.+?)}(.+?)>" '
regEx.IgnoreCase = true '
regEx.Global = True '
result = regEx.replace(obj_label_Rs("Content"),"<img src='../images/default.png' border='0'/>")
%>
<tr style="display:" class="hback">
<td height="42" colspan="2" class="hback"><div><%= result%></div></td>
</tr>
<%
obj_label_Rs.close:set obj_label_Rs = nothing
End if
%>
</table>
<div align="center">
<input name="button2" type="button" onClick="window.returnValue='';window.close();" value="关闭窗口">
</div></td>
</tr>
</table>
</body>
</html>
<!-- Powered by: FoosunCMS4.0系列,Company:Foosun Inc. -->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -