Tengo la siguiente asp que abre y lee un archivo de tipo texto; es decir, .txt para mostarlo un el browser.
<%
Set fs = CreateObject("Scripting.FileSystemObject")
Set wfile = fs.OpenTextFile("C:\Inetpub\Prueba\MyFile.txt")
filecontent = wfile.ReadAll
wfile.close
Set wfile=nothing
Set fs=nothing
response.write(filecontent)
%>
El problema es que se tarda demasiado la ejecusión del código, generando Timeout.
Alguien me podría decir que puede estar pasando?
