G
Graham Mattingley
Hi Group,
I have this code, that was pointed out to me, but it returns the error
ADODB.Stream error '800a0bba'
File could not be opened.
/image_counter/default.asp, line 5
I have the IUSR permission set the the file "e:/test.gif" - but it dont seem
to work..
any ideas please
Regards
Graham Mattingley
this is all the code from the asp page
============================
<%
Set adoStream = Server.CreateObject("ADODB.Stream")
adoStream.Open()
adoStream.Type = 1
adoStream.LoadFromFile("e:/test.gif")
Response.BinaryWrite adoStream.Read()
adoStream.Close: Set adoStream = Nothing
Response.End
%>
I have this code, that was pointed out to me, but it returns the error
ADODB.Stream error '800a0bba'
File could not be opened.
/image_counter/default.asp, line 5
I have the IUSR permission set the the file "e:/test.gif" - but it dont seem
to work..
any ideas please
Regards
Graham Mattingley
this is all the code from the asp page
============================
<%
Set adoStream = Server.CreateObject("ADODB.Stream")
adoStream.Open()
adoStream.Type = 1
adoStream.LoadFromFile("e:/test.gif")
Response.BinaryWrite adoStream.Read()
adoStream.Close: Set adoStream = Nothing
Response.End
%>