Hi Trystan,
I believe you can always use <noscript> with the current version. Since it's not built in with the control, it requires a little bit extra code. But it's fairly easy to do:
Code: HTML/ASPX
<div id="uploaderDiv" style="display:none">
our uploader goes here
</div>
<script type="text/javascript">
document.getElementById("uploaderDiv").style.display = "block";
</script>
<noscript>
asp.net file upload goes here
</noscript>
This way if script is enabled, you will see our control, if not, you will see the standard ASP.NET file upload control. One the server side, you can always check whether the ASP.NET file upload has any files, then check ours.
We are still hesitate about whether we should integrate this logic into our control because while an integrated solution may seem to be easier to get started, it would not have as much customization options as you would get without integration.
Please let us know if you have any other thoughts. We'd be happy to hear and consider.
Thanks