服务热线
在用户登录时加入是否可上传文件的 Session 验证。在fckeditor目录下editor\filemanager\connectors\aspx\config.ascx文件中查找"private bool CheckAuthentication()", 在默认情况下返回的是true。将其替换为:return ( Session[ "IsAuthorized" ] != null && (bool)Session[ "IsAuthorized" ] == true );
然后在网站后台的登陆验证代码里,加入Session[ "IsAuthorized" ]=true。这样就可以增加了fckeditor的上传验证。
