nivini
Programmer
- Mar 24, 2004
- 64
I have this code:
<marquee>
<OBJECT RUNAT=server PROGID=Scripting.FileSystemObject id=OBJECT1> </OBJECT>
<%
set textFile=OBJECT1.OpenTextFile(server.MapPath ("files/marquee.txt"))
while not textFile.atEndOfStream
Response.Write (textFile.readAll())
wend
%>
</marquee>
when i run it, the norton antivirus raises an alert about using info.exe and is asking for permission to use this script.
what do i have to permit or change through code so my useres will not meet this alert in case they have norton installed?
any additional article/knowledge about this issue will be most appriciate
<marquee>
<OBJECT RUNAT=server PROGID=Scripting.FileSystemObject id=OBJECT1> </OBJECT>
<%
set textFile=OBJECT1.OpenTextFile(server.MapPath ("files/marquee.txt"))
while not textFile.atEndOfStream
Response.Write (textFile.readAll())
wend
%>
</marquee>
when i run it, the norton antivirus raises an alert about using info.exe and is asking for permission to use this script.
what do i have to permit or change through code so my useres will not meet this alert in case they have norton installed?
any additional article/knowledge about this issue will be most appriciate