473,401 Members | 2,146 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,401 software developers and data experts.

Error makes no sense - Help!!

I'm getting the following error which is no big deal - the
problem is it is LOCATION specific - which has me really
baffled... for some reason the error only appears on
different machines in different various locations. I've
checked the versions of browsers and I've tried from at
least 10 different pc's in different locations and the
page comes up perfect. My web server is up to date with
all current patches. Occasionally, someone will email me
and tell me there's an error that looks like this.

Active Server Pages error 'ASP 0116'

Missing close of script delimiter

/Region/North America/Canada/British
Columbia/Victoria/index.htm, line 32

The Script block lacks the close of script tag (%>).
I've downloaded the file and examined it closely and there
is of course the close script tag as it does run fine from
my workstation here ( no - there are no local files on my
machine as the entire site is generated )

The only thing I can think of is that in the website
configuration I have the .htm extension mapped to the
asp.dll so that I can have files with a .htm extension
execute ASP code. Any ideas out there??

..
Jul 19 '05 #1
8 4320
David Girard wrote on 13 jan 2004 in
microsoft.public.inetserver.asp.general:
The Script block lacks the close of script tag (%>).


Usually those are things so trivial that you don't see them, like:

<%="Hello there %>

what should be:

<%="Hello there" %>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #2
Do you have an include that doesn't have a %>?

Ray at work

"David Girard" <da**@a1vacationproperties.com> wrote in message
news:00****************************@phx.gbl...
I'm getting the following error which is no big deal - the
problem is it is LOCATION specific - which has me really
baffled... for some reason the error only appears on
different machines in different various locations. I've
checked the versions of browsers and I've tried from at
least 10 different pc's in different locations and the
page comes up perfect. My web server is up to date with
all current patches. Occasionally, someone will email me
and tell me there's an error that looks like this.

Active Server Pages error 'ASP 0116'

Missing close of script delimiter

/Region/North America/Canada/British
Columbia/Victoria/index.htm, line 32

The Script block lacks the close of script tag (%>).
I've downloaded the file and examined it closely and there
is of course the close script tag as it does run fine from
my workstation here ( no - there are no local files on my
machine as the entire site is generated )

The only thing I can think of is that in the website
configuration I have the .htm extension mapped to the
asp.dll so that I can have files with a .htm extension
execute ASP code. Any ideas out there??

.

Jul 19 '05 #3
I could only wish it was that easy....
-----Original Message-----
Do you have an include that doesn't have a %>?

Ray at work

"David Girard" <da**@a1vacationproperties.com> wrote in messagenews:00****************************@phx.gbl...
I'm getting the following error which is no big deal - the problem is it is LOCATION specific - which has me really
baffled... for some reason the error only appears on
different machines in different various locations. I've
checked the versions of browsers and I've tried from at
least 10 different pc's in different locations and the
page comes up perfect. My web server is up to date with
all current patches. Occasionally, someone will email me
and tell me there's an error that looks like this.

Active Server Pages error 'ASP 0116'

Missing close of script delimiter

/Region/North America/Canada/British
Columbia/Victoria/index.htm, line 32

The Script block lacks the close of script tag (%>).
I've downloaded the file and examined it closely and there is of course the close script tag as it does run fine from my workstation here ( no - there are no local files on my machine as the entire site is generated )

The only thing I can think of is that in the website
configuration I have the .htm extension mapped to the
asp.dll so that I can have files with a .htm extension
execute ASP code. Any ideas out there??

.

.

Jul 19 '05 #4
Nope - definately not - there are literally hundreds of
pages that are all generated and they all work execept
this one... I will post the code.
-----Original Message-----
David Girard wrote on 13 jan 2004 in
microsoft.public.inetserver.asp.general:
The Script block lacks the close of script tag (%>).
Usually those are things so trivial that you don't see

them, like:
<%="Hello there %>

what should be:

<%="Hello there" %>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
.

Jul 19 '05 #5
<html>
<head>
<meta name="description" content="A1 Vacation Rental
Properties - FREE to list your rental, FREE to browse
THOUSANDS of VACATION RENTAL properties from around the
world. Property Owners: Join the fastest growing website
on the internet and let us showcase your property to
thousands of potential renters everyday.">
<meta name="keywords" content="vacation rental vacation
property holiday travel vacation rental condo home rental
townhouse real estate Cabo San Lucas Vacation Rental
Connecticut Delaware District of Columbia Florida
Vacation Rental Georgia Hawaii Vacation Rental Kauai
Maui Oahu Ohio Illinois Indiana Kentucky California
Vacation Rental Louisiana Maine Maryland
Massachusetts Michigan Minnesota Mississippi Montana
Nevada New Jersey New Mexico New York North Carolina
Oregon Pennsylvania Rhode Island South Carolina
Tennessee Texas Utah Vermont Virgina Washington
West Virgina Wisconson Wyoming Australia Belgium
Italy Vacation Rentals Malta Mexico Philippines South
America">
<META NAME=ROBOTS CONTENT=ALL>
<META NAME=ROBOTS CONTENT=index>
<META NAME=ROBOTS CONTENT=follow>
<META NAME=REVISIT-AFTER CONTENT="10 days">
<META NAME=DISTRIBUTION CONTENT=global>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<META HTTP-EQUIV="expires" CONTENT="0">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META NAME=LAST-MODIFIED CONTENT="Sun, 11-Jan-2004
3:29:53 GMT">
<title>Victoria Vacation Rentals - BRITISH COLUMBIA -
Victoria British Columbia vacation rentals</title>
<%
Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open "CaboWabo"
strURL = Request.Servervariables("SCRIPT_NAME")
strURL = Right(strURL,Len(strURL)-1)
strURL = ReplaceQuot(strURL)
SqlCode = ( "SELECT * FROM stats WHERE (PageID = '" &
strURL &"' AND SentDate = '" & Date() &"');")
'response.write(sqlcode)
Set RSStats = OConn.Execute
(SqlCode)
IF (RSStats.BOF = True) and
(RSStats.EOF = True) Then
SqlCode = "INSERT INTO
stats (PageID, SentDate, Views) VALUES ( '"& strURL
&"','"& Date() &"',1);"
Set RSStats =
OConn.Execute (SqlCode)
Else
If IsNull(RSStats.Fields
("Views")) Then
IntClicks = 1
Else
IntClicks =
RSStats.Fields("Views") + 1
End IF
SqlCode = ( "UPDATE Stats
SET Views = " & IntClicks & " WHERE (PageID = '" & strURL
&"' AND SentDate = '" & Date() &"');")
Set RSStats =
OConn.Execute (SqlCode)
End If

Public Function ReplaceQuot(sString)

If IsNull(sString) Then
ReplaceQuot = Null
Else
x = 1
iStart = Len(sString)
Do While x <= Len(sString)
sChar = Mid(sString,x,1)
If sChar = chr(39) Then
ReplaceQuot = ReplaceQuot & "''"
Else
ReplaceQuot = ReplaceQuot & sChar
End If
'Response.Write(ReplaceQuot & "<br>")
x = x + 1
Loop
End If

End Function
%>
<script language="JavaScript">
<!-- hide this script from non-javascript-enabled browsers
function MM_findObj(n, d) { //v3.0
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))
0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document;
n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!
x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj
(n,d.layers[i].document); return x;
}

/* Functions that swaps images. */
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new
Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x;
if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])
&&x.oSrc;i++) x.src=x.oSrc;
}

// stop hiding -->
</script>
<SCRIPT language=JavaScript>

<!--
//

var message="Copyright A1 Vacation Properties, 2001-2004";

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->

</SCRIPT>

<!--------------------------BEGIN LINK BOX JAVASCRIPT -----
----------->
<script language="JavaScript">
<!--


function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options
[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
<!----------------END JAVASCRIPT LINK BOX------------------
------>
<LINK REL="STYLESHEET" TYPE="text/css"
HREF="http://www.a1vacationproperties.com/a1.css">
</head>
<body bgcolor="#ffffff" link="#2D537E" vlink="#808080"
onLoad="Stats()" stats=1>
<script>
window.onerror=dmerr;
document.write('<scr'+'ipt language=javascript src="'+
((document.location.href.toString().indexOf("/")
==5)?"http":"https")
+'://collector.deepmetrix.com/stats.js"></scr'+'ipt>');
function dmerr()
{
return true;
}
var dmCart = 0;
var dmProducts = new Array();
var dmQuantity = new Array();
</script>

<div align="center">
<table border="0" cellpadding="0" cellspacing="0"
width="750">
<!-- fwtable fwsrc="newsplash.png" fwbase="rollover.gif" --

<script language="JavaScript">
<!-- hide
if (document.images) {
rollover_r2_c02_f2 = new Image(77 ,27);
rollover_r2_c02_f2.src
= "http://www.a1vacationproperties.com/images/roll/rollover
_r2_c02_f2.gif";
rollover_r2_c02_f1 = new Image(77 ,27);
rollover_r2_c02_f1.src
= "http://www.a1vacationproperties.com/images/roll/rollover
_r2_c02.gif";
rollover_r2_c04_f2 = new Image(179 ,27);
rollover_r2_c04_f2.src
= "http://www.a1vacationproperties.com/images/roll/rollover
_r2_c04_f2.gif";
rollover_r2_c04_f1 = new Image(179 ,27);
rollover_r2_c04_f1.src
= "http://www.a1vacationproperties.com/images/roll/rollover
_r2_c04.gif";
rollover_r2_c06_f2 = new Image(39 ,27);
rollover_r2_c06_f2.src
= "http://www.a1vacationproperties.com/images/roll/rollover
_r2_c06_f2.gif";
rollover_r2_c06_f1 = new Image(39 ,27);
rollover_r2_c06_f1.src
= "http://www.a1vacationproperties.com/images/roll/rollover
_r2_c06.gif";
rollover_r2_c08_f2 = new Image(60 ,25);
rollover_r2_c08_f2.src
= "http://www.a1vacationproperties.com/images/roll/rollover
_r2_c08_f2.gif";
rollover_r2_c08_f1 = new Image(60 ,25);
rollover_r2_c08_f1.src
= "http://www.a1vacationproperties.com/images/roll/rollover
_r2_c08.gif";
rollover_r2_c10_f2 = new Image(62 ,27);
rollover_r2_c10_f2.src
= "http://www.a1vacationproperties.com/images/roll/rollover
_r2_c10_f2.gif";
rollover_r2_c10_f1 = new Image(62 ,27);
rollover_r2_c10_f1.src
= "http://www.a1vacationproperties.com/images/roll/rollover
_r2_c10.gif";
}
// stop hiding -->
</script>
<tr>
<!-- Shim row, height 1. -->
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="296" height="1" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="77" height="1" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="8" height="1" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="179" height="1" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="8" height="1" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="39" height="1" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="9" height="1" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="60" height="1" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="8" height="1" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="62" height="1" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="4" height="1" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="1" height="1" border="0"></td>
</tr>

<tr valign="top"><!-- row 1 -->
<td colspan="11">
<img name="rollover_r1_c01"
src="http://www.a1vacationproperties.com/images/topsplash28
08.gif" width="750" height="97" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="1" height="97" border="0"></td>
</tr>
<tr valign="top"><!-- row 2 -->
<td
background="http://www.a1vacationproperties.com/images/roll
/rollover_r2_c01.gif">
<!------- Begin Drop Box Table--------->
<table width= cellpadding=0 cellspacing=0 border=0
bgcolor="" align=""><tr>

<form name="form2"><td align="left" valign="top">
<select name="menu1" onChange="MM_jumpMenu
('parent',this,0)">
<option selected>Quick links
<option>------------
<option>LOCATIONS
<option>------------
<option
value="http://www.a1vacationproperties.com/region/north%
20america/canada">Canada
<option
value="http://www.a1vacationproperties.com/region/north%
20america/usa">USA (mainland)
<option
value="http://www.a1vacationproperties.com/region/north%
20america/usa/hawaii">Hawaii
<option
value="http://www.a1vacationproperties.com/region/north%
20america/mexico">Mexico
<option
value="http://www.a1vacationproperties.com/region/caribbean
">Caribbean
<option
value="http://www.a1vacationproperties.com/region/central%
20/america">Central America
<option
value="http://www.a1vacationproperties.com/region/europe">E
urope
<option
value="http://www.a1vacationproperties.com/region/Australia
-Oceania/Australia">Australia
<option
value="http://www.a1vacationproperties.com/region/Australia
-Oceania/New%20Zealand">New Zealand
<option>------------
<option
value="http://www.stayxs.com/new/booking/default.asp?
wsid=433">HOTEL SPECIALS
<option>------------
<option
value="http://www.stayxs.com/new/booking/default.asp?
wsid=433">Asia
<option
value="http://www.stayxs.com/new/booking/default.asp?
wsid=433">India
<option
value="http://www.stayxs.com/new/booking/default.asp?
wsid=433">Australia
<option>------------
<option
value="http://www.a1vacationproperties.com/signup.htm">Join
Us
<option
value="http://www.a1vacationproperties.com/owners/members.a
sp">Members Area
<option
value="http://www.a1vacationproperties.com/contactus.htm">C
ontact Us</select></td></form>

<td valign="middle">
<img
src="http://www.a1vacationproperties.com/images/go_2708.gif
" width=68 height=13 alt="" border="0"></td>
</tr>

</table>
<!------- END Drop Box --------->
</td>
<td rowspan="2"><a
href="http://www.a1vacationproperties.com"
onMouseOut="MM_swapImgRestore();"
onMouseOver="MM_swapImage
('rollover_r2_c02','','http://www.a1vacationproperties.com/
images/roll/rollover_r2_c02_f2.gif',1);" >
<img name="rollover_r2_c02"
src="http://www.a1vacationproperties.com/images/roll/rollov
er_r2_c02.gif" width="77" height="27" border="0"></a></td>
<td rowspan="2">
<img name="rollover_r2_c03"
src="http://www.a1vacationproperties.com/images/roll/rollov
er_r2_c03.gif" width="8" height="27" border="0"></td>
<td rowspan="2"><a
href="http://www.a1vacationproperties.com/signup.htm"
onMouseOut="MM_swapImgRestore();"
onMouseOver="MM_swapImage
('rollover_r2_c04','','http://www.a1vacationproperties.com/
images/roll/rollover_r2_c04_f2.gif',1);" >
<img name="rollover_r2_c04"
src="http://www.a1vacationproperties.com/images/roll/rollov
er_r2_c04.gif" width="179" height="27" border="0"></a></td>
<td rowspan="2">
<img name="rollover_r2_c05"
src="http://www.a1vacationproperties.com/images/roll/rollov
er_r2_c05.gif" width="8" height="27" border="0"></td>
<td rowspan="2"><a
href="http://www.a1vacationproperties.com/faqs.htm"
onMouseOut="MM_swapImgRestore();"
onMouseOver="MM_swapImage
('rollover_r2_c06','','http://www.a1vacationproperties.com/
images/roll/rollover_r2_c06_f2.gif',1);" >
<img name="rollover_r2_c06"
src="http://www.a1vacationproperties.com/images/roll/rollov
er_r2_c06.gif" width="39" height="27" border="0"></a></td>
<td rowspan="2">
<img name="rollover_r2_c07"
src="http://www.a1vacationproperties.com/images/roll/rollov
er_r2_c07.gif" width="9" height="27" border="0"></td>
<td><a
href="http://www.a1vacationproperties.com/aboutus.htm"
onMouseOut="MM_swapImgRestore();"
onMouseOver="MM_swapImage
('rollover_r2_c08','','http://www.a1vacationproperties.com/
images/roll/rollover_r2_c08_f2.gif',1);" >
<img name="rollover_r2_c08"
src="http://www.a1vacationproperties.com/images/roll/rollov
er_r2_c08.gif" width="60" height="25" border="0"></a></td>
<td rowspan="2">
<img name="rollover_r2_c09"
src="http://www.a1vacationproperties.com/images/roll/rollov
er_r2_c09.gif" width="8" height="27" border="0"></td>
<td rowspan="2">
<a onMouseOut="MM_swapImgRestore();"
onMouseOver="MM_swapImage
('rollover_r2_c10','','http://www.a1vacationproperties.com/
images/roll/rollover_r2_c10_f2.gif',1);"
href="http://www.a1vacationproperties.com/owners/members.as
p">
<img name="rollover_r2_c10"
src="http://www.a1vacationproperties.com/images/roll/rollov
er_r2_c10.gif" width="62" height="27" border="0"></a></td>
<td rowspan="2">
<img name="rollover_r2_c11"
src="http://www.a1vacationproperties.com/images/roll/rollov
er_r2_c11.gif" width="4" height="27" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="1" height="25" border="0"></td>
</tr>
<tr valign="top"><!-- row 3 -->
<td>
<img name="rollover_r3_c01"
src="http://www.a1vacationproperties.com/images/roll/rollov
er_r3_c01.gif" width="296" height="2" border="0"></td>
<td>
<img name="rollover_r3_c08"
src="http://www.a1vacationproperties.com/images/roll/rollov
er_r3_c08.gif" width="60" height="2" border="0"></td>
<td><img
src="http://www.a1vacationproperties.com/images/roll/shim.g
if" width="1" height="2" border="0"></td></tr></table>
<table cellpadding="0" cellspacing="0" height=""
width="750" height="550">
<tr>
<td valign="top">

<table align="left" cellpadding="0"
cellspacing="0" height="" bgcolor="#FFFFCE" width="173"
height="550">
<tr valign="top">
<td align="" valign="top" width="" height="24">
<img
src="http://www.a1vacationproperties.com/images/icon_login.
gif" width=173 height=24 alt="" border="0"></td>
</tr>
<tr valign="top">
<td valign="top" align="center">

<TABLE cellpadding="0" cellspacing="0"
align="center" >

<TR>
<TD>
<FORM action="/owners/logon.asp"
method="post"></td>
<TR>
<TD><FONT face=Tahoma,Verdana,arial
color=#000000 size=1>&nbsp;&nbsp;&nbsp;<B>Login to
myVR</B></STRONG> </FONT></TD></TR>
<TR>
<TD align=right><FONT
face=Tahoma,Verdana,arial color=#000000
size=1>Username:&nbsp;&nbsp;&nbsp;<br><INPUT size=16
name=Username> </FONT></TD></TR>
<TR>
<TD align=right><FONT
face=Tahoma,Verdana,arial color=#000000
size=1>Password:&nbsp;&nbsp;<br>&nbsp; <INPUT
type=password
size=16 name=Password>
</FONT></TD></TR>
<TR>
<TD align=right>
<input type="image"
src="http://www.a1vacationproperties.com/images/login.gif"
name="Submit" border="0" width="68" height="13"><br>&nbsp;
</TD></TR></FORM>
<td align=""
valign="top" width="" height="24">
<img
src="http://www.a1vacationproperties.com/images/icon_sign.g
if" width=173 height=24 alt="" border="0"></td>

<tr>
<td height=520><table cellpadding=2 cellspacing=2
height=520>
<tr valign="top">
<td> <P><FONT face=Tahoma,Verdana,arial
color=#000000 size=1 >&nbsp;&nbsp;&nbsp;<B>Not a
Member?:</B><br>
It is
FREE to browse Vacation Rental listings as well as FREE to
post listings of your property if you
are a property owner. <A
class="main_link"
href="http://www.a1vacationproperties.com/signup.htm">Sign-
up</A>
now.</P></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td colspan="" align="center" valign="top"><br>
<table CELLSPACING="5" BORDER="0" CELLPADDING="0"
width="480" style="BORDER-COLLAPSE: collapse"
bordercolor="#111111" align="left">
<tr valign="top" align="left">
<td VALIGN="top">&nbsp;</td>
<td VALIGN="top">&nbsp;</td>
</tr>
</font><b><a
class="main_link"href="http://a1vacationproperties.com/"><f
ont SIZE="2">World</a> : </font><a
class="main_link"href="http://a1vacationproperties.com/Regi
on/North%20America/"><font SIZE="2">North America</a> :
</font><a
class="main_link"href="http://a1vacationproperties.com/Regi
on/North%20America/Canada/"><font SIZE="2">Canada</a> :
</font><a
class="main_link"href="http://a1vacationproperties.com/Regi
on/North%20America/Canada/British%20Columbia/"><font
SIZE="2">British Columbia</a> : Victoria</b></font><BR><a
class="main_link"href="http://a1vacationproperties.com/weat
her.asp?CAXX0523"><font SIZE="1">Weather Report for
Victoria</a></font><tr><td VALIGN="top"><table border="1"
cellpadding="0" cellspacing="0" style="border-collapse:
collapse" bordercolor="#111111" width="100%"><tr><td
width="100%"><a href="Victoria_380.htm"><img border="0"
src="http://www.a1vacationproperties.com/photos/thumbs2/122
6.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><font size="1"><b>$650 USD per
week</b><br>Modern 2-storey house with four bedrooms and 2
bathrooms upstairs. Downstairs is the main living area
with 2 half bathrooms, kitchen, large sitting room, dining
room and family room with sofa bed. The house is set on
almost... <a class="main_link"href="Victoria_380.htm">More
on this Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><table
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#111111"
width="100%"><tr><td width="100%"><a
href="Victoria_662.htm"><img border="0"
src="http://www.a1vacationproperties.com/photos/thumbs2/214
1.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><font size="1"><b>$88 - $195 USD per
night</b><br>This waterfront suite is tastefully brand new
furnished in contemporary luxury and modish decors and is
arranged in a relaxing floor plan with 780 square foot in
area.

Rest on a Queen-size bed with Simmons BeautyRest... <a
class="main_link"href="Victoria_662.htm">More on this
Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><table
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#111111"
width="100%"><tr><td width="100%"><a
href="Victoria_1373.htm"><img border="0"
src="http://www.a1vacationproperties.com/photos/thumbs2/452
3.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><font size="1">2 Bedroom,waterfront cottage
in Fanny Bay. Living room has large sectional with 2
recliners & double size pull out bed & TV/VCR. 3 piece
bathroom with tub/shower 7 fully equipped kitchen with
fridge/freezer, stove, microwave & all kitchen dishes
and ... <a class="main_link"href="Victoria_1373.htm">More
on this Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><table
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#111111"
width="100%"><tr><td width="100%"><a
href="Victoria_1489.htm"><img border="0"
src="http://www.a1vacationproperties.com/photos/thumbs2/528
9.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><font size="1"><b>$45 - $70 USD per
night</b><br>Nestled in unique Brentwood Bay, this cottage
offers convenient access to bus routes, the ocean, cycling
trails, world famous Butchart Gardens, and much more. Hop
on the Mill Bay ferry and explore the wine district,... <a
class="main_link"href="Victoria_1489.htm">More on this
Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><table
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#111111"
width="100%"><tr><td width="100%"><a
href="Victoria_1841.htm"><img border="0"
src="http://www.a1vacationproperties.com/photos/thumbs2/623
2.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><font size="1">Experience your choice of
luxurious oceanside accommodation, where you can relax and
savor the quiet serenity of Brentwood Bay. These two
beautiful homes are located just 20 minutes from Victoria
on Vancouver Island, British Columbia, Canada - by
world... <a class="main_link"href="Victoria_1841.htm">More
on this Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><table
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#111111"
width="100%"><tr><td width="100%"><a
href="Victoria_1880.htm"><img border="0"
src="http://www.a1vacationproperties.com/photos/thumbs2/634
8.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><font size="1"><b>$4000 CAD per
week</b><br>5.5 Acre Private Estate with views of Mt.Baker
and Elk Lake to East. Great entertainment opportunity with
modern desiner kitchen and relaxation in Victoria's
largest private swimming pool. 15 minutes from city centre
or airport.... <a
class="main_link"href="Victoria_1880.htm">More on this
Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><table
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#111111"
width="100%"><tr><td width="100%"><a
href="Victoria_2191.htm"><img border="0"
src="http://www.a1vacationproperties.com/photos/thumbs2/755
1.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><font size="1"><b>$1500 CAD per
month</b><br>=> Beautiful Mill Bay, Vancouver Island

5 Bedroom, Fully Furnished House for Rent.

* Partially renovated, two floor house
* 3 bathrooms
* Washer/Dryer
* Two car garage
* Balcony
* Ocean views
* Close to Victoria... <a
class="main_link"href="Victoria_2191.htm">More on this
Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><table
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#111111"
width="100%"><tr><td width="100%"><a
href="Victoria_2512.htm"><img border="0"
src="http://www.a1vacationproperties.com/photos/thumbs2/878
0.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><font size="1">Our rent is VERY very modest
because we are seeking a very particular type of
vacationer- we prefer to rent to retired, non-smoking
residents of small town Manitoba, Saskatchewan, Alberta,
or BC. Discount of 10% to anyone who has taught Sunday
School... <a
class="main_link"href="Victoria_2512.htm">More on this
Victoria Vacation Rental
Property</a></font></td></tr></table>

</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0"
width="750">
<tr height="25">
<td bgcolor="#5063FA"><p align="center"
class="bot_blue"><a
href="http://www.a1vacationproperties.com/faqs.htm"
onMouseOver="status='Frequently Asked Questions';return
true" class="bot_blue">FAQ's</a> | <a
href="http://www.a1vacationproperties.com/aboutus.htm"
onMouseOver="status='About US';return true"
class="bot_blue">About Us</a> | <a
href="http://www.a1vacationproperties.com/signup.htm"
onMouseOver="status='Property Owners Sign Up Here - Its
FREE!!';return true" class="bot_blue">Sign-up</a> | <a
href="http://www.a1vacationproperties.com/user.htm"
onMouseOver="status='Member Login';return true"
class="bot_blue">Login</a> | <a
href="http://www.a1vacationproperties.com/"
onMouseOver="status='Home Page';return true"
class="bot_blue">Home</a> | <a
href="http://www.a1vacationproperties.com/contactus.htm"
onMouseOver="status='Contact Us';return true"
class="bot_blue">Contact Us</a> | <a
href="javascript:window.external.AddFavorite
(location.href,document.title)" onMouseOver="status='Add
This Page To Your Bookmarks';return true"
class="bot_blue">Bookmark This Page</a> | <a
href="http://www.a1vacationproperties.com/links.htm"
onMouseOver="status='Contact Us';return true"
class="bot_blue">Links</a></td>
</tr>

<tr>
<td height="30"
background="http://www.a1vacationproperties.com/images/bot_
bar.gif"><p align="center"><font
face="tahoma,verdana,arial" size="1" color="#ffffff">All
Rights Reserved &copy; 2001 -
2003 A1VacationProperties.com</td>
</tr>
</table>
</div>

</body>

</html>
Jul 19 '05 #6
Dave wrote on 14 jan 2004 in microsoft.public.inetserver.asp.general:
David Girard wrote on 13 jan 2004 in
The Script block lacks the close of script tag (%>).

Usually those are things so trivial that you don't see

them, like:
<%="Hello there %>
what should be:
<%="Hello there" %>

Nope - definately not - there are literally hundreds of
pages that are all generated and they all work execept
this one... I will post the code.


[please do not top-post on usenet]

That there is some mistake has a high probability.

A typo is easily made and overlooked, as you show.

How can you definitly be sure
that an error like(!) that is not the culprit?

We await the code. Please use copy-and-paste.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #7
I don't see anything wrong with what you posted. In the error that you
posted, it indicates that it's expecting a %> on line 32. I believe that
indicates that your file is 31 or 32 lines long, not several hundred like
what you posted. So, are you sure that you're looking at the right file?

Ray at work

"David Girard" <da**@a1vacationproperties.com> wrote in message
news:00****************************@phx.gbl...
I'm getting the following error which is no big deal - the
problem is it is LOCATION specific - which has me really
baffled... for some reason the error only appears on
different machines in different various locations. I've
checked the versions of browsers and I've tried from at
least 10 different pc's in different locations and the
page comes up perfect. My web server is up to date with
all current patches. Occasionally, someone will email me
and tell me there's an error that looks like this.

Active Server Pages error 'ASP 0116'

Missing close of script delimiter

/Region/North America/Canada/British
Columbia/Victoria/index.htm, line 32

The Script block lacks the close of script tag (%>).
I've downloaded the file and examined it closely and there
is of course the close script tag as it does run fine from
my workstation here ( no - there are no local files on my
machine as the entire site is generated )

The only thing I can think of is that in the website
configuration I have the .htm extension mapped to the
asp.dll so that I can have files with a .htm extension
execute ASP code. Any ideas out there??

.

Jul 19 '05 #8
Dave wrote:
<html>

<snip>
Is it possible any of your server-side string variables contain "<%"? You
might try using HTMLEncode for any variable being written to the response
....

HTH,
Bob Barrows

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Chumley the Walrus | last post by:
When i put an explicit value in the sql statement below as "displaygroup =1 ", i do see my records (or my response.write test after the recordset Open line) appear on my dynamic page. But when use...
45
by: Debashish Chakravarty | last post by:
K&R pg.66 describes two situations when using goto makes sense. Has anyone here come across situations where using goto provided the most elegant solution. --...
2
by: Dave Bailey | last post by:
When I run the following code public DataView CreateLocationDataSource() { string locationConnect = "Provider=\"MSDAORA.1\";" + GetConnectionString() + ""; string locationSelect =...
3
by: Developer.Man4 | last post by:
Hi all, i've been investigating for quite a while for files that are mandatory to be deployed to the server for an asp.net v1.1 application to run, to make it more clear, we don't need to move...
5
by: yoni | last post by:
Hi, I am trying to write a regexp to find all the code on the header of entities in SQL Server (views, SPs, etc...) I got something like this: (.|\n)*((create view)|(create proc)|(create...
5
by: howlostami | last post by:
Call to a member function free() on a non-object error can anyone help plz?
6
by: sara | last post by:
Hi - I have the code below and it errors with "Type Mismatch" on the last line. I have no idea why. The query is based on one table. Table has 2 fields: Key (autonum) and PONumber (Long) ...
3
by: gdarian216 | last post by:
I am writting a code that opens a file and take input a line at a time. It would store that line of info in a string and then I want to split that string up into little strings and store those...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.