DownEdit.asp
资源名称:1.rar [点击查看]
上传用户:yrf020
上传日期:2007-07-24
资源大小:1287k
文件大小:7k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
HTML/CSS
- <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
- <% Option Explicit %>
- <HTML xmlns="http://www.w3.org/1999/xhtml">
- <HEAD>
- <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" />
- <META NAME="copyright" CONTENT="Copyright 2006-2008 - Hokilly.com-STUDIO" />
- <META NAME="Author" CONTENT="红金羚软件,www.hokilly.com" />
- <META NAME="Keywords" CONTENT="" />
- <META NAME="Description" CONTENT="" />
- <TITLE>编辑下载</TITLE>
- <link rel="stylesheet" href="Images/CssAdmin.css">
- <script language="javascript" src="../Script/Admin.js"></script>
- <style type="text/css">
- <!--
- .STYLE1 { font-size: medium;
- font-weight: bold;
- color: #ff0000;
- }
- -->
- </style>
- </HEAD>
- <!--#include file="../Include/Const.asp" -->
- <!--#include file="../Include/ConnSiteData.asp" -->
- <!--#include file="CheckAdmin.asp"-->
- <%
- Dim SERVER_NAME
- SERVER_NAME=trim(Request.ServerVariables("SERVER_NAME"))
- if (SERVER_NAME= ""&chr(119)&chr(119)&chr(119)&chr(46)&chr(104)&chr(111)&chr(107)&chr(105)&chr(108)&chr(108)&chr(121)&chr(46)&chr(99)&chr(111)&chr(109)&"")or(SERVER_NAME= ""&chr(104)&chr(111)&chr(107)&chr(105)&chr(108)&chr(121)&chr(46)&chr(99)&chr(111)&chr(109)&"")or(SERVER_NAME= ""&chr(108)&chr(111)&chr(99)&chr(97)&chr(108)&chr(104)&chr(111)&chr(115)&chr(116)&"")or(SERVER_NAME= ""&chr(49)&chr(50)&chr(55)&chr(46)&chr(48)&chr(46)&chr(48)&chr(46)&chr(49)&"") then
- if Instr(session("AdminPurview"),"|53,")=0 then
- response.write ("<font color='red')>你不具有该管理模块的操作权限,请返回!</font>")
- response.end
- end if
- '========判断是否具有管理权限
- %>
- <BODY>
- <p> </p>
- <p class="STYLE1">免费版不提供此功能!请联系Tel:13915064582
- 或者QQ:15916190 购买商业正式版!</p>
- <p>详情请见:<a href="http://www.hokilly.com" target="_blank">http://www.hokilly.com</a></p>
- <p>常州红金羚软件技术有限公司 </p>
- <p> </p>
- </body>
- </html>
- <%
- else
- response.write "<meta http-equiv=refresh content=0;URL="&chr(104)&chr(116)&chr(116)&chr(112)&chr(58)&chr(47)&chr(47)&chr(104)&chr(111)&chr(107)&chr(105)&chr(108)&chr(108)&chr(121)&chr(46)&chr(99)&chr(111)&chr(109)&chr(47)&chr(114)&chr(101)&chr(103)&chr(46)&chr(97)&chr(115)&chr(112)&">"
- response.end%>
- <%end if%>
- <%
- sub DownEdit()
- dim Action,rsRepeat,rs,sql
- Action=request.QueryString("Action")
- if Action="SaveEdit" then '保存编辑下载信息
- set rs = server.createobject("adodb.recordset")
- if len(trim(request.Form("DownNameCh")))<1 then
- response.write ("<script language=javascript> alert('名称为必填项目!');history.back(-1);</script>")
- response.end
- end if
- if Result="Add" then '创建下载信息
- sql="select * from CompanyCMS_Download"
- rs.open sql,conn,1,3
- rs.addnew
- rs("DownNameCh")=trim(Request.Form("DownNameCh"))
- if Request.Form("ViewFlagCh")=1 then
- rs("ViewFlagCh")=Request.Form("ViewFlagCh")
- else
- rs("ViewFlagCh")=0
- end if
- if Request.Form("SortID")="" and Request.Form("SortPath")="" then
- response.write ("<script language=javascript> alert('请选择所属分类!');history.back(-1);</script>")
- response.end
- else
- rs("SortID")=Request.Form("SortID")
- rs("SortPath")=Request.Form("SortPath")
- end if
- if Request.Form("CommendFlag")=1 then
- rs("CommendFlag")=Request.Form("CommendFlag")
- else
- rs("CommendFlag")=0
- end if
- GroupIdName=split(Request.Form("GroupID"),"┎╂┚")
- rs("GroupID")=GroupIdName(0)
- rs("Exclusive")=trim(Request.Form("Exclusive"))
- rs("FileSize")=trim(Request.Form("FileSize"))
- rs("FileUrl")=trim(Request.Form("FileUrl"))
- rs("ContentCh")=Request.Form("ContentCh")
- rs("UploadFiles")=trim(Request.Form("UploadFiles"))
- rs("AddTime")=now()
- rs("UpdateTime")=now()
- end if
- if Result="Modify" then '修改下载信息
- sql="select * from CompanyCMS_Download where ID="&ID
- rs.open sql,conn,1,3
- rs("DownNameCh")=trim(Request.Form("DownNameCh"))
- if Request.Form("ViewFlagCh")=1 then
- rs("ViewFlagCh")=Request.Form("ViewFlagCh")
- else
- rs("ViewFlagCh")=0
- end if
- if Request.Form("SortID")<>"" and Request.Form("SortPath")<>"" then
- rs("SortID")=Request.Form("SortID")
- rs("SortPath")=Request.Form("SortPath")
- else
- response.write ("<script language=javascript> alert('请选择所属分类!');history.back(-1);</script>")
- response.end
- end if
- if Request.Form("CommendFlag")=1 then
- rs("CommendFlag")=Request.Form("CommendFlag")
- else
- rs("CommendFlag")=0
- end if
- GroupIdName=split(Request.Form("GroupID"),"┎╂┚")
- rs("GroupID")=GroupIdName(0)
- rs("Exclusive")=trim(Request.Form("Exclusive"))
- rs("FileSize")=trim(Request.Form("FileSize"))
- rs("FileUrl")=trim(Request.Form("FileUrl"))
- rs("ContentCh")=Request.Form("ContentCh")
- rs("UploadFiles")=trim(Request.Form("UploadFiles"))
- rs("UpdateTime")=now()
- end if
- rs.update
- rs.close
- set rs=nothing
- response.write "<script language=javascript> alert('成功编辑下载信息!');changeAdminFlag('下载列表');location.replace('DownList.asp');</script>"
- else '提取产品信息
- if Result="Modify" then
- set rs = server.createobject("adodb.recordset")
- sql="select * from CompanyCMS_Download where ID="& ID
- rs.open sql,conn,1,1
- if rs.bof and rs.eof then
- response.write ("数据库读取记录出错!")
- response.end
- end if
- DownNameCh=rs("DownNameCh")
- ViewFlagCh=rs("ViewFlagCh")
- SortNameCh=SortText(rs("SortID"))
- SortID=rs("SortID")
- SortPath=rs("SortPath")
- CommendFlag=rs("CommendFlag")
- GroupID=rs("GroupID")
- Exclusive=rs("Exclusive")
- FileSize=rs("FileSize")
- FileUrl=rs("FileUrl")
- ContentCh=rs("ContentCh")
- UploadFiles=rs("UploadFiles")
- rs.close
- set rs=nothing
- end if
- end if
- end sub
- %>
- <%
- sub SelectGroup()
- dim rs,sql
- set rs = server.createobject("adodb.recordset")
- sql="select GroupID,GroupNameCh from CompanyCMS_MemGroup"
- rs.open sql,conn,1,1
- if rs.bof and rs.eof then
- response.write("未设组别")
- end if
- while not rs.eof
- response.write("<option value='"&rs("GroupID")&"┎╂┚"&rs("GroupNameCh")&"'")
- if GroupID=rs("GroupID") then response.write ("selected")
- response.write(">"&rs("GroupNameCh")&"</option>")
- rs.movenext
- wend
- rs.close
- set rs=nothing
- end sub
- %>
- <%
- '生成所属类别--------------------------
- Function SortText(ID)
- Dim rs,sql
- Set rs=server.CreateObject("adodb.recordset")
- sql="Select * From CompanyCMS_DownSort where ID="&ID
- rs.open sql,conn,1,1
- SortText=rs("SortNameCh")
- rs.close
- set rs=nothing
- End Function
- %>
English
