config.asp
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:2k
源码类别:

OA系统

开发平台:

C#

  1. <!--
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2006 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * "Support Open Source software. What about a donation today?"
  12.  * 
  13.  * File Name: config.asp
  14.  *  Configuration file for the File Manager Connector for ASP.
  15.  * 
  16.  * File Authors:
  17.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  18. -->
  19. <%
  20. ' SECURITY: You must explicitelly enable this "uploader" (set it to "True"). 
  21. Dim ConfigIsEnabled
  22. ConfigIsEnabled = False
  23. ' Set if the file type must be considere in the target path. 
  24. ' Ex: /UserFiles/Image/ or /UserFiles/File/
  25. Dim ConfigUseFileType
  26. ConfigUseFileType = False
  27. ' Path to user files relative to the document root.
  28. Dim ConfigUserFilesPath
  29. ConfigUserFilesPath = "/UserFiles/"
  30. ' Allowed and Denied extensions configurations.
  31. Dim ConfigAllowedExtensions, ConfigDeniedExtensions
  32. Set ConfigAllowedExtensions = CreateObject( "Scripting.Dictionary" )
  33. Set ConfigDeniedExtensions = CreateObject( "Scripting.Dictionary" )
  34. ConfigAllowedExtensions.Add "File", ""
  35. ConfigDeniedExtensions.Add "File", "php|php2|php3|php4|php5|phtml|pwml|inc|asp|aspx|ascx|jsp|cfm|cfc|pl|bat|exe|com|dll|vbs|js|reg|cgi"
  36. ConfigAllowedExtensions.Add "Image", "jpg|gif|jpeg|png|bmp"
  37. ConfigDeniedExtensions.Add "Image", ""
  38. ConfigAllowedExtensions.Add "Flash", "swf|fla"
  39. ConfigDeniedExtensions.Add "Flash", ""
  40. %>