Hola a todos.
Tengo un problema y no se que me pasa, intento crear un archivo, he estado mirando por el foro y parece que esto debería de funcionar, pero el servidor me da un error HTTP 500 - Error interno del servidor
Este es el archivo asp.
<%@ LANGUAGE="VBSCRIPT" %>
<%Response.Buffer=true%>
<%
Set mistring="HOLA"
Set FSO = Server.CreateObject("Scripting.FileSystemObject")
Set miFile = FSO.CreateTextFile("menu.xml", true)
miFile.Write(mistring)
Set FSO = Nothing
Set mifile = Nothing
%>
Gracias