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.