I'm not sure what I'm doing wrong here. I can't seam to get the handler wired up properly.
Please help!
Sorry, I didn't check the forums. This has already been answered.
var session = this.Session
Thanks Again!
Right on Martin. Thanks for clarifying this for me. So I was thinking that the handler would be where I would stop on the server for processing but I see you guys offer events for that.
One other question, when using the OnUploadStarting and OnUploadFinishing events I see that session is not available, is there a way to get access to session in these events?
Thanks again.
Hello neilfl,
Your project uses VS development server i.e. IIS 6, so you should use the IIS 6 settings to register http handler and module. From what I see you didn't register the http module.
Next you should add a folder named "Uploads" to the project. Also, remove "IGUploadStatusHandler.ashx" file from the project.
Last, you're handling the OnUploadFinishing event in which you're deleting the uploaded file. This way you'll never see a file uploaded in the "Uploads" folder of the project. You should remove this handler if you want files uploaded.
I'm reattaching your project with my suggestion applied.
Best regards,Martin PavlovInfragistics, Inc.