config.asp
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <!--
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2005 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.  * File Name: config.asp
  12.  *  Configuration file for the File Manager Connector for ASP.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16. -->
  17. <%
  18. ' SECURITY: You must explicitelly enable this "uploader" (set it to "True"). 
  19. Dim ConfigIsEnabled
  20. ConfigIsEnabled = False
  21. ' Path to user files relative to the document root.
  22. Dim ConfigUserFilesPath
  23. ConfigUserFilesPath = "/UserFiles/"
  24. ' Allowed and Denied extensions configurations.
  25. Dim ConfigAllowedExtensions, ConfigDeniedExtensions
  26. Set ConfigAllowedExtensions = CreateObject( "Scripting.Dictionary" )
  27. Set ConfigDeniedExtensions = CreateObject( "Scripting.Dictionary" )
  28. ConfigAllowedExtensions.Add "File", ""
  29. ConfigDeniedExtensions.Add "File", "php|php3|php5|phtml|asp|aspx|ascx|jsp|cfm|cfc|pl|bat|exe|dll|reg|cgi"
  30. ConfigAllowedExtensions.Add "Image", "jpg|gif|jpeg|png|bmp"
  31. ConfigDeniedExtensions.Add "Image", ""
  32. ConfigAllowedExtensions.Add "Flash", "swf|fla"
  33. ConfigDeniedExtensions.Add "Flash", ""
  34. %>