upload.asp
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:2k
源码类别:

数据库编程

开发平台:

Visual C++

  1. <%@ CodePage=65001 Language="VBScript"%>
  2. <%
  3. Option Explicit
  4. Response.Buffer = True
  5. %>
  6. <%
  7.  ' FCKeditor - The text editor for Internet - http://www.fckeditor.net
  8.  ' Copyright (C) 2003-2007 Frederico Caldeira Knabben
  9.  '
  10.  ' == BEGIN LICENSE ==
  11.  '
  12.  ' Licensed under the terms of any of the following licenses at your
  13.  ' choice:
  14.  '
  15.  '  - GNU General Public License Version 2 or later (the "GPL")
  16.  '    http://www.gnu.org/licenses/gpl.html
  17.  '
  18.  '  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  19.  '    http://www.gnu.org/licenses/lgpl.html
  20.  '
  21.  '  - Mozilla Public License Version 1.1 or later (the "MPL")
  22.  '    http://www.mozilla.org/MPL/MPL-1.1.html
  23.  '
  24.  ' == END LICENSE ==
  25.  '
  26.  ' This is the "File Uploader" for ASP.
  27. %>
  28. <!--#include file="config.asp"-->
  29. <!--#include file="util.asp"-->
  30. <!--#include file="io.asp"-->
  31. <!--#include file="commands.asp"-->
  32. <!--#include file="class_upload.asp"-->
  33. <%
  34. ' Check if this uploader has been enabled.
  35. If ( ConfigIsEnabled = False ) Then
  36. SendUploadResults "1", "", "", "This file uploader is disabled. Please check the ""editor/filemanager/connectors/asp/config.asp"" file"
  37. End If
  38. Dim sCommand, sResourceType, sCurrentFolder
  39. sCommand = "QuickUpload"
  40. sResourceType = Request.QueryString("Type")
  41. If ( sResourceType = "" ) Then sResourceType = "File"
  42. sCurrentFolder = GetCurrentFolder()
  43. ' Is Upload enabled?
  44. if ( Not IsAllowedCommand( sCommand ) ) then
  45. SendUploadResults "1", "", "", "The """ & sCommand & """ command isn't allowed"
  46. end if
  47. ' Check if it is an allowed resource type.
  48. if ( Not IsAllowedType( sResourceType ) ) Then
  49. SendUploadResults "1", "", "", "The " & sResourceType & " resource type isn't allowed"
  50. end if
  51. FileUpload sResourceType, sCurrentFolder, sCommand
  52. %>