up vote 0 down vote favorite
share [g+] share [fb]

I've just downloaded the new AjaxControlToolkit from codeplex to give the much anticipated AsyncFileUpload control a go, but unfortunately it has fallen at the first hurdle...

I have put it on a fairly simple page called uploadFile.aspx which takes a url argument:

uploadFile.aspx?myDbId=1

In the page load, it's doing stuff with Request["myDbId"].

When selecting a file using the new control, it posts it back straight away, but it hits a 500 error with the Request["myDbId"] line because it has stripped ALL url arguments and replaced them for it's own:

uploadFile.aspx?AsyncFileUploadID=ctl00_BodyPlaceHolder_ctl00&rnd=08382490910589695

This to me is a massive problem, and one I haven't been able to get around. Any solutions?

link|improve this question

feedback

4 Answers

up vote 0 down vote accepted

Here's an alternate solution if that one doesn't work out. This solution has been around for a year or two, and it is his second version. It includes a progress bar that doesn't require a flash dependency, and can handle very large files without problems.

ASP.Net File Upload Module v2
http://darrenjohnstone.net/aspnet-file-uploaddownload-module-v2-documentation/

link|improve this answer
I don't think this is quite what I'm after - it seems to involve a lot of setup, and there's no access to the FileSystem or SQL Server so I'd have to write something to process the upload. I was hoping for something more similar to the standard control - which is why we were looking at the Ajax Toolkit one that's just been produced, but it's broooked – Paul Oct 14 '09 at 15:37
2  
Setup is required because an Http handler is installed; this is what makes it possible to handle large file sizes without running out of memory on the IIS server. Not sure what you mean by access to the file system. There is a module included that allows direct upload to SQL Server. – Robert Harvey Oct 14 '09 at 15:44
Sorry, that's what I mean (I've just accidentally upvoted your comment, hehe - mad moment, I thought it was a house!), I can't use the module for directly uploading to SQL Server - or the module for uploading directly to file system. – Paul Oct 14 '09 at 15:51
How can you upload the file if you don't have access to the file system? Where is it going to go? – Robert Harvey Oct 14 '09 at 15:53
Cos it gets uploaded, there's a load of processing that happens on it, and then it's stored in an object which eventually gets stored in the database. It never gets stored on disk (well - other than it being in a temporary file I imagine) – Paul Oct 14 '09 at 17:06
show 3 more comments
feedback

Can you use a Session variable to manage myDbId?

link|improve this answer
Sadly no, that would involve a fairly big refactor to what's there at the moment – Paul Oct 14 '09 at 17:05
feedback

You could encode the id in the filename, so just append "--" + myDbId to the filename. The fact that it comes after the extension could make it easier to know that this was added.

link|improve this answer
feedback

Put the AsyncFileUpload control in an iframe on the page, which will post back to just that section.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.