We are trying to use ASPUploader from the examples provided in the download. We have it working...but the files get uploaded as .resx files. How do we get them uploaded as regular files (.jpg, etc...) We need to display them on the page and actually keep them on the server. The only way we could get this to work at all was to use this code. Any help at all would be really appreciated.
<form id="form1" method="POST">
<%
Dim uploader
Set uploader=new AspUploader
uploader.MaxSizeKB=10240
uploader.Name="myuploader"
uploader.InsertText="Upload File (Max 10M)"
uploader.AllowedFileExtensions="*.jpg,*.png,*.gif"
uploader.MultipleFilesUpload=true
Uploader.TempDirectory ="E:\Webs\ourwesbite.com\http-docs\uploads\"
%>
<%=uploader.GetString() %>
</form>