ASP
--
Questions
--
Followers
Top Experts
I can only upload 6M file at max. why??
when the file size is large, it said "cannot be displayed... Cannot find server or DNS Error"
I didn't use the proxy server.
how come?
Zero AI Policy
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
Good Luck,
-greg
<% @Language="VBScript" %>
<%
Set theForm = Server.CreateObject("ABCUp
theForm("filefield")(1).Ma
theForm("filefield")(1).Sa
%>
hongjun






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
it said theform(...)(...).maxuploa
doesn't allow
<%
Set theForm = Server.CreateObject("ABCUp
theFormMaxUploadSize = 99999 ' this is in bytes
'
'
' rest of code
%>
hongjun

Get a FREE t-shirt when you ask your first question.
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
hongjun
i want to use pure asp upload but it seems not as good as component one. as pure asp can't upload binary data
wait i am trying now






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
pls wait... it seems work
if it works, do you know why??
so strange
it is explained very clearly in
http://www.websupergoo.com/helpupload/4-objectref/1-xform/default.htm
hongjun

Get a FREE t-shirt when you ask your first question.
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
hongjun






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
<% '@Language="VBScript" %>
<% Server.ScriptTimeout = 3400 %>
<% @Session.Timeout = 60 %>
<%
Set theForm = Server.CreateObject("ABCUp
theForm.MaxUploadSize = 40000000 ' this is in bytes
theForm.ID = Request.QueryString("ID")
Set theField = theForm("inname")(1)
'theField.Save "./" & session("login") & "/"& theField.FileName &""
'uploadname=theField.FileN
'theField.Save "./" & session("login") & "/"& theField.FileName &""
theForm("inname")(1).Save "./" & session("login") & "/"& theForm("inname")(1).FileN
response.write "<p><br><center><font size=5 color=blue>"
response.write "File:  "& session("uploadname") &" was successfully uploaded!<br>"
response.write "<a href='upload.asp'>Click here to upload another file</a></center><br>"
response.write "<center>OR<br>"
response.write "<a href='screener.htm'>Quit here</a></center><br>"
%>
I need to use session("login") to store the login but if I want to use progress bar, I need to do <%@EnableSessionState=Fals
Thanks for your help!!
hongjun

Get a FREE t-shirt when you ask your first question.
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
ASP
--
Questions
--
Followers
Top Experts
Active Server Pages (ASP) is Microsoft’s first server-side engine for dynamic web pages. ASP’s support of the Component Object Model (COM) enables it to access and use compiled libraries such as DLLs. It has been superseded by ASP.NET, but will be supported by Internet Information Services (IIS) through at least 2022.