473,606 Members | 2,171 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 4348
David Girard wrote on 13 jan 2004 in
microsoft.publi c.inetserver.as p.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**@a1vacatio nproperties.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**@a1vacatio nproperties.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.publ ic.inetserver.a sp.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="descripti on" 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="vacati on 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=DISTRIBUTI ON 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>Victor ia Vacation Rentals - BRITISH COLUMBIA -
Victoria British Columbia vacation rentals</title>
<%
Set oConn = Server.CreateOb ject("ADODB.Con nection")
oConn.Open "CaboWabo"
strURL = Request.Serverv ariables("SCRIP T_NAME")
strURL = Right(strURL,Le n(strURL)-1)
strURL = ReplaceQuot(str URL)
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(sSt ring)

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="JavaS cript">
<!-- 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.fram es.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.le ngth;i++) x=d.forms[i][n];
for(i=0;!x&&d.l ayers&&i<d.laye rs.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_sw apImage.argumen ts; document.MM_sr= new
Array; for(i=0;i<(a.le ngth-2);i+=3)
if ((x=MM_findObj( a[i]))!=null){docum ent.MM_sr[j++]=x;
if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function MM_swapImgResto re() { //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=JavaSc ript>

<!--
//

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

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layer s) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layer s) {
document.captur eEvents(Event.M OUSEDOWN);
}
document.onmous edown=click;
// -->

</SCRIPT>

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


function MM_jumpMenu(tar g,selObj,restor e){ //v3.0
eval(targ+".loc ation='"+selObj .options
[selObj.selected Index].value+"'");
if (restore) selObj.selected Index=0;
}
//-->
</script>
<!----------------END JAVASCRIPT LINK BOX------------------
------>
<LINK REL="STYLESHEET " TYPE="text/css"
HREF="http://www.a1vacationp roperties.com/a1.css">
</head>
<body bgcolor="#fffff f" link="#2D537E" vlink="#808080"
onLoad="Stats() " stats=1>
<script>
window.onerror= dmerr;
document.write( '<scr'+'ipt language=javasc ript src="'+
((document.loca tion.href.toStr ing().indexOf("/")
==5)?"http":"ht tps")
+'://collector.deepm etrix.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="newsplas h.png" fwbase="rollove r.gif" --

<script language="JavaS cript">
<!-- hide
if (document.image s) {
rollover_r2_c02 _f2 = new Image(77 ,27);
rollover_r2_c02 _f2.src
= "http://www.a1vacationp roperties.com/images/roll/rollover
_r2_c02_f2.gif" ;
rollover_r2_c02 _f1 = new Image(77 ,27);
rollover_r2_c02 _f1.src
= "http://www.a1vacationp roperties.com/images/roll/rollover
_r2_c02.gif";
rollover_r2_c04 _f2 = new Image(179 ,27);
rollover_r2_c04 _f2.src
= "http://www.a1vacationp roperties.com/images/roll/rollover
_r2_c04_f2.gif" ;
rollover_r2_c04 _f1 = new Image(179 ,27);
rollover_r2_c04 _f1.src
= "http://www.a1vacationp roperties.com/images/roll/rollover
_r2_c04.gif";
rollover_r2_c06 _f2 = new Image(39 ,27);
rollover_r2_c06 _f2.src
= "http://www.a1vacationp roperties.com/images/roll/rollover
_r2_c06_f2.gif" ;
rollover_r2_c06 _f1 = new Image(39 ,27);
rollover_r2_c06 _f1.src
= "http://www.a1vacationp roperties.com/images/roll/rollover
_r2_c06.gif";
rollover_r2_c08 _f2 = new Image(60 ,25);
rollover_r2_c08 _f2.src
= "http://www.a1vacationp roperties.com/images/roll/rollover
_r2_c08_f2.gif" ;
rollover_r2_c08 _f1 = new Image(60 ,25);
rollover_r2_c08 _f1.src
= "http://www.a1vacationp roperties.com/images/roll/rollover
_r2_c08.gif";
rollover_r2_c10 _f2 = new Image(62 ,27);
rollover_r2_c10 _f2.src
= "http://www.a1vacationp roperties.com/images/roll/rollover
_r2_c10_f2.gif" ;
rollover_r2_c10 _f1 = new Image(62 ,27);
rollover_r2_c10 _f1.src
= "http://www.a1vacationp roperties.com/images/roll/rollover
_r2_c10.gif";
}
// stop hiding -->
</script>
<tr>
<!-- Shim row, height 1. -->
<td><img
src="http://www.a1vacationp roperties.com/images/roll/shim.g
if" width="296" height="1" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.com/images/roll/shim.g
if" width="77" height="1" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.com/images/roll/shim.g
if" width="8" height="1" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.com/images/roll/shim.g
if" width="179" height="1" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.com/images/roll/shim.g
if" width="8" height="1" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.com/images/roll/shim.g
if" width="39" height="1" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.com/images/roll/shim.g
if" width="9" height="1" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.com/images/roll/shim.g
if" width="60" height="1" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.com/images/roll/shim.g
if" width="8" height="1" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.com/images/roll/shim.g
if" width="62" height="1" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.com/images/roll/shim.g
if" width="4" height="1" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.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.a1vacationp roperties.com/images/topsplash28
08.gif" width="750" height="97" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.com/images/roll/shim.g
if" width="1" height="97" border="0"></td>
</tr>
<tr valign="top"><!-- row 2 -->
<td
background="htt p://www.a1vacationp roperties.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"><t d align="left" valign="top">
<select name="menu1" onChange="MM_ju mpMenu
('parent',this, 0)">
<option selected>Quick links
<option>------------
<option>LOCATIO NS
<option>------------
<option
value="http://www.a1vacationp roperties.com/region/north%
20america/canada">Canada
<option
value="http://www.a1vacationp roperties.com/region/north%
20america/usa">USA (mainland)
<option
value="http://www.a1vacationp roperties.com/region/north%
20america/usa/hawaii">Hawaii
<option
value="http://www.a1vacationp roperties.com/region/north%
20america/mexico">Mexico
<option
value="http://www.a1vacationp roperties.com/region/caribbean
">Caribbean
<option
value="http://www.a1vacationp roperties.com/region/central%
20/america">Centra l America
<option
value="http://www.a1vacationp roperties.com/region/europe">E
urope
<option
value="http://www.a1vacationp roperties.com/region/Australia
-Oceania/Australia">Aust ralia
<option
value="http://www.a1vacationp roperties.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">Austr alia
<option>------------
<option
value="http://www.a1vacationp roperties.com/signup.htm">Joi n
Us
<option
value="http://www.a1vacationp roperties.com/owners/members.a
sp">Members Area
<option
value="http://www.a1vacationp roperties.com/contactus.htm"> C
ontact Us</select></td></form>

<td valign="middle" >
<img
src="http://www.a1vacationp roperties.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.a1vacationp roperties.com"
onMouseOut="MM_ swapImgRestore( );"
onMouseOver="MM _swapImage
('rollover_r2_c 02','','http://www.a1vacationp roperties.com/
images/roll/rollover_r2_c02 _f2.gif',1);" >
<img name="rollover_ r2_c02"
src="http://www.a1vacationp roperties.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.a1vacationp roperties.com/images/roll/rollov
er_r2_c03.gif" width="8" height="27" border="0"></td>
<td rowspan="2"><a
href="http://www.a1vacationp roperties.com/signup.htm"
onMouseOut="MM_ swapImgRestore( );"
onMouseOver="MM _swapImage
('rollover_r2_c 04','','http://www.a1vacationp roperties.com/
images/roll/rollover_r2_c04 _f2.gif',1);" >
<img name="rollover_ r2_c04"
src="http://www.a1vacationp roperties.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.a1vacationp roperties.com/images/roll/rollov
er_r2_c05.gif" width="8" height="27" border="0"></td>
<td rowspan="2"><a
href="http://www.a1vacationp roperties.com/faqs.htm"
onMouseOut="MM_ swapImgRestore( );"
onMouseOver="MM _swapImage
('rollover_r2_c 06','','http://www.a1vacationp roperties.com/
images/roll/rollover_r2_c06 _f2.gif',1);" >
<img name="rollover_ r2_c06"
src="http://www.a1vacationp roperties.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.a1vacationp roperties.com/images/roll/rollov
er_r2_c07.gif" width="9" height="27" border="0"></td>
<td><a
href="http://www.a1vacationp roperties.com/aboutus.htm"
onMouseOut="MM_ swapImgRestore( );"
onMouseOver="MM _swapImage
('rollover_r2_c 08','','http://www.a1vacationp roperties.com/
images/roll/rollover_r2_c08 _f2.gif',1);" >
<img name="rollover_ r2_c08"
src="http://www.a1vacationp roperties.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.a1vacationp roperties.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_c 10','','http://www.a1vacationp roperties.com/
images/roll/rollover_r2_c10 _f2.gif',1);"
href="http://www.a1vacationp roperties.com/owners/members.as
p">
<img name="rollover_ r2_c10"
src="http://www.a1vacationp roperties.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.a1vacationp roperties.com/images/roll/rollov
er_r2_c11.gif" width="4" height="27" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.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.a1vacationp roperties.com/images/roll/rollov
er_r3_c01.gif" width="296" height="2" border="0"></td>
<td>
<img name="rollover_ r3_c08"
src="http://www.a1vacationp roperties.com/images/roll/rollov
er_r3_c08.gif" width="60" height="2" border="0"></td>
<td><img
src="http://www.a1vacationp roperties.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="#FFFFC E" width="173"
height="550">
<tr valign="top">
<td align="" valign="top" width="" height="24">
<img
src="http://www.a1vacationp roperties.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,Ver dana,arial
color=#000000 size=1>&nbsp;&n bsp;&nbsp;<B>Lo gin to
myVR</B></STRONG> </FONT></TD></TR>
<TR>
<TD align=right><FO NT
face=Tahoma,Ver dana,arial color=#000000
size=1>Username :&nbsp;&nbsp;&n bsp;<br><INPUT size=16
name=Username> </FONT></TD></TR>
<TR>
<TD align=right><FO NT
face=Tahoma,Ver dana,arial color=#000000
size=1>Password :&nbsp;&nbsp;<b r>&nbsp; <INPUT
type=password
size=16 name=Password>
</FONT></TD></TR>
<TR>
<TD align=right>
<input type="image"
src="http://www.a1vacationp roperties.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.a1vacationp roperties.com/images/icon_sign.g
if" width=173 height=24 alt="" border="0"></td>

<tr>
<td height=520><tab le cellpadding=2 cellspacing=2
height=520>
<tr valign="top">
<td> <P><FONT face=Tahoma,Ver dana,arial
color=#000000 size=1 >&nbsp;&nbsp;&n bsp;<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_lin k"
href="http://www.a1vacationp roperties.com/signup.htm">Sig n-
up</A>
now.</P></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td colspan="" align="center" valign="top"><b r>
<table CELLSPACING="5" BORDER="0" CELLPADDING="0"
width="480" style="BORDER-COLLAPSE: collapse"
bordercolor="#1 11111" align="left">
<tr valign="top" align="left">
<td VALIGN="top">&n bsp;</td>
<td VALIGN="top">&n bsp;</td>
</tr>
</font><b><a
class="main_lin k"href="http ://a1vacationprope rties.com/"><f
ont SIZE="2">World</a> : </font><a
class="main_lin k"href="http ://a1vacationprope rties.com/Regi
on/North%20America/"><font SIZE="2">North America</a> :
</font><a
class="main_lin k"href="http ://a1vacationprope rties.com/Regi
on/North%20America/Canada/"><font SIZE="2">Canada </a> :
</font><a
class="main_lin k"href="http ://a1vacationprope rties.com/Regi
on/North%20America/Canada/British%20Colum bia/"><font
SIZE="2">Britis h Columbia</a> : Victoria</b></font><BR><a
class="main_lin k"href="http ://a1vacationprope rties.com/weat
her.asp?CAXX052 3"><font SIZE="1">Weathe r Report for
Victoria</a></font><tr><td VALIGN="top"><t able border="1"
cellpadding="0" cellspacing="0" style="border-collapse:
collapse" bordercolor="#1 11111" width="100%"><t r><td
width="100%"><a href="Victoria_ 380.htm"><img border="0"
src="http://www.a1vacationp roperties.com/photos/thumbs2/122
6.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><f ont size="1"><b>$65 0 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_lin k"href="Victori a_380.htm">More
on this Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><t able
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#1 11111"
width="100%"><t r><td width="100%"><a
href="Victoria_ 662.htm"><img border="0"
src="http://www.a1vacationp roperties.com/photos/thumbs2/214
1.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><f ont 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_lin k"href="Victori a_662.htm">More on this
Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><t able
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#1 11111"
width="100%"><t r><td width="100%"><a
href="Victoria_ 1373.htm"><img border="0"
src="http://www.a1vacationp roperties.com/photos/thumbs2/452
3.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><f ont size="1">2 Bedroom,waterfr ont 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_lin k"href="Victori a_1373.htm">Mor e
on this Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><t able
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#1 11111"
width="100%"><t r><td width="100%"><a
href="Victoria_ 1489.htm"><img border="0"
src="http://www.a1vacationp roperties.com/photos/thumbs2/528
9.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><f ont 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_lin k"href="Victori a_1489.htm">Mor e on this
Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><t able
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#1 11111"
width="100%"><t r><td width="100%"><a
href="Victoria_ 1841.htm"><img border="0"
src="http://www.a1vacationp roperties.com/photos/thumbs2/623
2.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><f ont size="1">Experi ence 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_lin k"href="Victori a_1841.htm">Mor e
on this Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><t able
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#1 11111"
width="100%"><t r><td width="100%"><a
href="Victoria_ 1880.htm"><img border="0"
src="http://www.a1vacationp roperties.com/photos/thumbs2/634
8.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><f ont size="1"><b>$40 00 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_lin k"href="Victori a_1880.htm">Mor e on this
Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><t able
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#1 11111"
width="100%"><t r><td width="100%"><a
href="Victoria_ 2191.htm"><img border="0"
src="http://www.a1vacationp roperties.com/photos/thumbs2/755
1.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><f ont size="1"><b>$15 00 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_lin k"href="Victori a_2191.htm">Mor e on this
Victoria Vacation Rental
Property</a></font></td></tr><tr><td VALIGN="top"><t able
border="1" cellpadding="0" cellspacing="0" style="border-
collapse: collapse" bordercolor="#1 11111"
width="100%"><t r><td width="100%"><a
href="Victoria_ 2512.htm"><img border="0"
src="http://www.a1vacationp roperties.com/photos/thumbs2/878
0.jpg" width="100"
height="65"></a></td></tr></table></td><td
VALIGN="top"><f ont 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_lin k"href="Victori a_2512.htm">Mor e 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="#5063F A"><p align="center"
class="bot_blue "><a
href="http://www.a1vacationp roperties.com/faqs.htm"
onMouseOver="st atus='Frequentl y Asked Questions';retu rn
true" class="bot_blue ">FAQ's</a> | <a
href="http://www.a1vacationp roperties.com/aboutus.htm"
onMouseOver="st atus='About US';return true"
class="bot_blue ">About Us</a> | <a
href="http://www.a1vacationp roperties.com/signup.htm"
onMouseOver="st atus='Property Owners Sign Up Here - Its
FREE!!';return true" class="bot_blue ">Sign-up</a> | <a
href="http://www.a1vacationp roperties.com/user.htm"
onMouseOver="st atus='Member Login';return true"
class="bot_blue ">Login</a> | <a
href="http://www.a1vacationp roperties.com/"
onMouseOver="st atus='Home Page';return true"
class="bot_blue ">Home</a> | <a
href="http://www.a1vacationp roperties.com/contactus.htm"
onMouseOver="st atus='Contact Us';return true"
class="bot_blue ">Contact Us</a> | <a
href="javascrip t:window.extern al.AddFavorite
(location.href, document.title) " onMouseOver="st atus='Add
This Page To Your Bookmarks';retu rn true"
class="bot_blue ">Bookmark This Page</a> | <a
href="http://www.a1vacationp roperties.com/links.htm"
onMouseOver="st atus='Contact Us';return true"
class="bot_blue ">Links</a></td>
</tr>

<tr>
<td height="30"
background="htt p://www.a1vacationp roperties.com/images/bot_
bar.gif"><p align="center"> <font
face="tahoma,ve rdana,arial" size="1" color="#ffffff" >All
Rights Reserved &copy; 2001 -
2003 A1VacationPrope rties.com</td>
</tr>
</table>
</div>

</body>

</html>
Jul 19 '05 #6
Dave wrote on 14 jan 2004 in microsoft.publi c.inetserver.as p.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**@a1vacatio nproperties.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
5022
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 code below and match the 'displaygroup' field with my dp variable (which was assigned in a prior recordset/sql block) : <%dim cm,dp dp = rs("displaygroup")
45
2691
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. -- http://www.kashmiri-pandit.org/atrocities/index.html
2
1636
by: Dave Bailey | last post by:
When I run the following code public DataView CreateLocationDataSource() { string locationConnect = "Provider=\"MSDAORA.1\";" + GetConnectionString() + ""; string locationSelect = "SelectDescription from Locations " + " where Location = " + "'" + locationLabel.Text.ToUpper() + "'"; oda2 = new OleDbDataAdapter(locationSelect, locationConnect); DataSet ds2 = new DataSet();
3
1151
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 the source code files, .vb and .cs we have their assemblies deployed on the server. i also wanted to find out if we can change default locations for some files that are by default store on the application main folder. i got the following results...
5
1278
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 function)|(create trigger)) does that means sense? I want all the code that's before the code header. now, the problem is, when i give that pattern with some string buffer to the 'replace' method (I replace it with String.Empty...
5
6063
by: howlostami | last post by:
Call to a member function free() on a non-object error can anyone help plz?
6
1737
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) Query has one field -run off the table: PONum.
3
1428
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 strings in a vector. This is what I have so far but im getting an error can anyone help me with this. #include <iostream> #include <fstream> #include <string> #include <vector> using namespace std; //class Log_Entry
0
7951
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8430
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8305
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6770
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5465
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3930
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
3977
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2448
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1553
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.