I see that you have received a large number submissions about file upload size limites. We have our own servers and have done all the sugegsted changes to the metabe and other settings. But regular uploads always max at 60 MB with both ASPRunner applications and my own forms. We installed ASPUpload on our server and I adjusted my own forms to use it. They now upload even 2 GB files. For ASPRunner add foprms, I process the additions through a custom form. The difficulty is the edit function. I've not figured out with my own code to process the edit function with my code to accomplish large file uploads.
An example of the ASP code the uses ASPUpload is
<%
Set Upload = Server.CreateObject("Persits.Upload.1")
Upload.OverwriteFiles = False
On Error Resume Next
Upload.SetMaxSize 2097152000
Count = Upload.Save("c:\upload")
%>
In my custom forms, this takes over the upload functions. Do you have any ideas what I might replace in my ASPRunner apps for this?