Re: Uploader http module seems to conflict with another HTTP modules.

  •  09-24-2009, 10:38 AM

    Re: Uploader http module seems to conflict with another HTTP modules.

    Hi,
     
    When you use UrlRewriter.net , you need make sure the url can accept QueryString.
     
    For example , this is not compatible :
     
    <if url="/uploader22cs/world">
       <rewrite to="/uploader22cs/simple-upload.aspx" />
    </if>
     
    But this works :
     
    <if url="/uploader22cs/world($|(\?.*))">
       <rewrite to="/uploader22cs/simple-upload.aspx" />
    </if>
     
    Notes, if you still get error ,please try this in web.config appSettings:
     
    <add key="CuteWebUI.AjaxUploader.RewritePath" value="False" />
     
    Regards,
    Terry.
     
View Complete Thread