This error message has stopped me in my tracks...
Vbscript Interpretation error 'ASP 0185 : 800200004'
/contentMS/updating.asp,line 16
Does anyone know how i could resolve this problem?
Here is the code in my updating.asp file:
<%@LANGUAGE="VBSCRIPT"%>
<html>
<head>
<title>Updating...</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<div align="left"><font color="#000099" size="2" face="Verdana, Arial, Helvetica, sans-serif"><%
Dim Text
Text = request.form("NewsText"
Dim thisURL
filename=Server.MapPath("../contentMS/NewsReader/input.txt"
Set fs = CreateObject("Scripting.FileSystemObject"
Set writefile = fs.OpenTextFile(filename, 2, True)
writefile.writeline(Text) // line 16
writefile.Close
set writefile=nothing
set fs=nothing
thisURL="response.redirect thisURL & "
%>
Updating...</font></div>
</body>
</html>
The server that serves these page is running iASP (instant Asp) on Unix/linux machines. I am not having any trouble with the rest of the site.
Thank you for you time,
Vbscript Interpretation error 'ASP 0185 : 800200004'
/contentMS/updating.asp,line 16
Does anyone know how i could resolve this problem?
Here is the code in my updating.asp file:
<%@LANGUAGE="VBSCRIPT"%>
<html>
<head>
<title>Updating...</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<div align="left"><font color="#000099" size="2" face="Verdana, Arial, Helvetica, sans-serif"><%
Dim Text
Text = request.form("NewsText"
Dim thisURL
filename=Server.MapPath("../contentMS/NewsReader/input.txt"
Set fs = CreateObject("Scripting.FileSystemObject"
Set writefile = fs.OpenTextFile(filename, 2, True)
writefile.writeline(Text) // line 16
writefile.Close
set writefile=nothing
set fs=nothing
thisURL="response.redirect thisURL & "
%>
Updating...</font></div>
</body>
</html>
The server that serves these page is running iASP (instant Asp) on Unix/linux machines. I am not having any trouble with the rest of the site.
Thank you for you time,