Ciao a tutti.
Non sono un esperto di IIS e tanto meno di asp, però qualcosina riesco a fare.
Vengo al mio grattacapo.

In pratica sto cercando d'implementare CKEDITOR Free in un pannello di scrittura dei testi di un'area riservata.
Per l'implementazione dell'editor nessun problema, il problema sorge con l'attivazione del caricamento delle immagini da CKeditor.

In pratica quando cerco di fare l'upload dell'immagine mi restituisce questo errore.

codice:
Server Error in Application "dominio.COM"

Internet Information Services 7.5
Error Summary
HTTP Error 405.0 - Method Not Allowed
The page you are looking for cannot be displayed because an invalid method (HTTP verb) is being used.
Detailed Error Information
Module	DefaultDocumentModule
Notification	ExecuteRequestHandler
Handler	StaticFile
Error Code	0x80070001
Requested URL	http://www.nomedominio.com:80/admin/undefined
Physical Path	D:\Percorso1\nomedominio\admin\undefined
Logon Method	Anonymous
Logon User	Anonymous
Failed Request Tracing Log Directory	C:\inetpub\logs\FailedReqLogFiles
Most likely causes:

    * The request sent to the Web server used an HTTP verb that is not allowed by the module configured to handle the request.
    * A request was sent to the server that contained an invalid HTTP verb.
    * The request is for static content and contains an HTTP verb other than GET or HEAD.
    * A request was sent to a virtual directory using the HTTP verb POST and the default document is a static file that does not support HTTP verbs other than GET or HEAD.

Things you can try:

    * Verify the list of verbs enabled for the module handler this request was sent to, and ensure that this verb should be allowed for the Web site.
    * Check the IIS log file to see which verb is not allowed for the request.
    * Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click here.

Links and More Information This error means that the request sent to the Web server contained an HTTP verb that is not allowed by the configured module handler for the request.

View more information »

Da quel poco che ho potuto capire, è che il verbo POST non è abilitato nella configurazione di IIS.
Così mi sono portato sull'IIS ho selezionato il dominio, sono andato in HANDLER MAPPINGS ed ho visto ad esempio che sul staticfiles il tipo d'accesso richiesto dall handler è impostato giustamente su read.
Ho fatto diverse prove senza alcun successo.
Potete indicarmi come eliminare questo errore e far funzionare l'upload delle immagini ?

Mille grazie.