Ok, I'm a real newbie at the ASP stuff... I have two related questions:
What are my options for controls I can dynamically add to my webpart to allow a user to upload large files >100MB to the server?
What are my options for controls to trigger a download of a large file in a web browser with a "Save As" dialog box, so that the server can generate a file and send it to the user?
I've seen examples for FileUpload controls, HttpRequest/HttpResponse controls, FileWebRequest controls... its never clear if the examples are intended for windows apps scraping off websites, or client scripts that are tied to buttons, or serverside code that acts on a postback. I guess I'm looking for the latter... something I could write in the server code to trigger the interaction.
If anyone knows where I can find a clear tutorial, that would also be appriciated.