Ao enviar um arquivo recebo a seguinte mensagem:
CODE
Active Server Pages error 'ASP 0113'
Script timed out
/upload.asp
The maximum amount of time for a script to execute was exceeded. You can change this limit by specifying a new value for the property Server.ScriptTimeout or by changing the value in the IIS administration tools.
Script timed out
/upload.asp
The maximum amount of time for a script to execute was exceeded. You can change this limit by specifying a new value for the property Server.ScriptTimeout or by changing the value in the IIS administration tools.
Como eu faço para aumentar a taxa de upload, preciso enviara um arquivo muito grande, sempre que envio surge a mensagem acima.
Da uma olhadinha no script:
CODE
<HTML>
<style type="text/css">
<!--
.style1 {font-family: Arial, Helvetica, sans-serif}
.style2 {
font-size: 12px;
font-weight: bold;
}
-->
</style>
<BODY BGCOLOR="#FFFFFF">
<div align="center">
<p class="style1">
<%
Set Upload = Server.CreateObject("Persits.Upload.1")
Count = Upload.Save("\meu diretorio")
%>
<% = Count %>
<strong>Clipping Enviado com Sucesso</strong>.<br>
</p>
<p class="style1"><a href="http://www.minhapagina...." class="style2">Voltar</a></p>
</div>
</BODY>
</HTML>
<style type="text/css">
<!--
.style1 {font-family: Arial, Helvetica, sans-serif}
.style2 {
font-size: 12px;
font-weight: bold;
}
-->
</style>
<BODY BGCOLOR="#FFFFFF">
<div align="center">
<p class="style1">
<%
Set Upload = Server.CreateObject("Persits.Upload.1")
Count = Upload.Save("\meu diretorio")
%>
<% = Count %>
<strong>Clipping Enviado com Sucesso</strong>.<br>
</p>
<p class="style1"><a href="http://www.minhapagina...." class="style2">Voltar</a></p>
</div>
</BODY>
</HTML>

Help














