setup_obinfo_ok.asp

来自「不错的ASP整站源代码。在IIS环境下运行都没有问题」· ASP 代码 · 共 37 行

ASP
37
字号
<!--#include file="../../checkuser.asp" -->
<%
 m_ver = Trim(request("ver"))
 if m_ver="cn" then 
  tmpstr_t="[中文版]"
 elseif  m_ver="en"  then 
 tmpstr_t="[英文版]"
 else
 response.write "错误访问页面,请重试" 
 response.end    
 End If%>
<!--#include file="../../../include/db_conn.asp"-->
<%
	news_str=request.form("released_news_str") '要发布的新闻的数组列表
	news_str=left(news_str,len(news_str)-1)

	news_list=split(news_str,",")
	a=ubound(news_list)

	
	'修改信息的发布顺序
	for i=0 to a
		sqlstr="UPDATE ys_product_catalog SET InfoClsIndex=" & i & " WHERE CatalogID=" & news_list(i)
		conn.execute sqlstr
	next
	call closedb()	
%>


<script language="javascript">
function Onload(){
		parent.document.location.href="../productcatalog.asp?ver=<%=m_ver%>";
}
</script>
<BODY onload="Onload()"></body>
</body>
</html>

⌨️ 快捷键说明

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