i try to add the forum to my web site and its work very well but after i load the fourm my web page not loading/
i found the code that make the problem and if i delete it , the web was work. but i need this code ...
the code :
<%
Dim myArray(100)
Dim i
i=0
for each item in application.contents
myArray(i)=application.contents(item)
i=i+1
next
response.write "<script language='javascript'>"
response.write "arrcom = new Array ;"
response.write "var n=" & myArray(0) & ";"
for t=0 to i-2 step 1
response.write "arrcom[" & t & "]=" & "'" & myArray(t+1) & "';"
next
response.write "</script>"
%>
i load from global.asa names of banners and fill array with the name
it's simple asp code.
what the running forum doing that after i run the forum this code get error ?
please help me (-: