vote up 0 vote down star

Hi

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?

flag

2 Answers

vote up 0 vote down check

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|flag
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 – IP Oct 14 at 15:37
1  
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 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. – IP Oct 14 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 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) – IP Oct 14 at 17:06
show 3 more comments
vote up 0 vote down

Can you use a Session variable to manage myDbId?

link|flag
Sadly no, that would involve a fairly big refactor to what's there at the moment – IP Oct 14 at 17:05

Your Answer

Get an OpenID
or

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