Hi,
I have (mostly) figured out how to do this:
moved the form data outside of the slickupload control itself
added the individual components: UploadConnector, UploadProgressDisplay, FileSelector (X2)
removed the slickUpload control
This works if I set AutoUploadOnPostBack = true on the UploadConnector. Is there a way I can set this to false? (there are a few other things on the page that cause a postback)
I tried setting "kw.get('UploadConnector1').submit(); return false;" on the OnClientClick event of the button I am using for upload, but it does not seem to find the control (this works when using a slickUpload control, but doesn't appear to with individual components). I also tried replacing the name with <%=UploadConnector1.ClientID %> but to no avail.
Thanks!
Ben