Asp.net fckeditor上载问题

Asp.net fckeditor上载问题,asp.net,fckeditor,uploading,Asp.net,Fckeditor,Uploading,我正在尝试使用FckEditor中的上载功能,但当我选择文件并按上载时,我得到“正在上载,请稍候”,但没有发生任何情况,因为我知道我可以创建新文件夹并浏览图像目录中的现有文件。 我已将配置文件编辑到目标目录,并设置了写入和修改权限 // SECURITY: You must explicitly enable this "connector". (Set it to "true"). Enabled = CheckAuthentication(); // UR

我正在尝试使用FckEditor中的上载功能,但当我选择文件并按上载时,我得到“正在上载,请稍候”,但没有发生任何情况,因为我知道我可以创建新文件夹并浏览图像目录中的现有文件。
我已将配置文件编辑到目标目录,并设置了写入和修改权限

        // SECURITY: You must explicitly enable this "connector". (Set it to "true").
    Enabled = CheckAuthentication();

    // URL path to user files.
    UserFilesPath = "/Files/";

    // The connector tries to resolve the above UserFilesPath automatically.
    // Use the following setting it you prefer to explicitely specify the
    // absolute path. Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'.
    // Attention: The above 'UserFilesPath' URL must point to the same directory.
    UserFilesAbsolutePath = Server.MapPath("~/Files/");