Just recently installed version 7.9 and have been loving the application, but I see mto be having problems with the pop up 'Forum Codes' box.
When I test it on my local IIS server at home there is no problems with the file loading - but when I send it to the live server I get the following error:
Active Server Pages error 'ASP 0116'
Missing close of script delimiter
/forum/forum_codes.asp, line 310
The Script block lacks the close of script tag (%>). |
I really don't have enough working knowledge of the code to go digging around to fix it so I was hoping someone out there could help me.
Here's the code around line 310 (in bold) for your reference:
If blnEmoticons Then %> <tr> <td width="63%" class="text"> </td> <td width="37%" class="text"> </td> </tr> <tr> <td width="63%" class="bold"><% = strTxtEmoticons %></td> <td width="37%" class="text"> </td> </tr> <tr> <td colspan="2">
<table width="100%" border="0" cellspacing="0" cellpadding="4"><%
'Intilise the index position (we are starting at 1 instead of position 0 in the array for simpler calculations) intIndexPosition = 1
'Calcultae the number of outer loops to do intNumberOfOuterLoops = UBound(saryEmoticons) / 2
'If there is a remainder add 1 to the number of loops If UBound(saryEmoticons) MOD 2 > 0 Then intNumberOfOuterLoops = intNumberOfOuterLoops + 1
'Loop throgh th list of emoticons For intLoop = 1 to intNumberOfOuterLoops
Response.Write("<tr>") |