Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Strange <

Status
Not open for further replies.

Huitzilopochtli

Programmer
Feb 18, 2002
81
DE
Hello

I have a Web page at:


If you visit it, you will notice a strange < opening bracket to the left of the rotating banner ads at the top.
I can't seem to get rid of it!

The relevant code is:

<%@LANGUAGE=&quot;VBSCRIPT&quot;%>
<%Session.LCID = 2057%>

<!doctype html public &quot;-//w3c//dtd html 4.0 transitional//en&quot;>
<html>
<head>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
<meta name=&quot;GENERATOR&quot; content=&quot;Mozilla/4.6 [en-gb]C-CCK-MCD NetscapeOnline.co.uk (Win98; I) [Netscape]&quot;>

<script>

var speed = 3000

var Pic = new Array()

Pic[0] = 'banner1.jpg'
Pic[1] = 'banner2.jpg'
Pic[2] = 'banner3.jpg'

var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
preLoad = new Image()
preLoad.src = Pic
}

function runSlideShow(){
document.images.SlideShow.src = preLoad[j].src
j = j + 1
if (j > (p-1)) j=0
t = setTimeout('runSlideShow()', speed)
}

</script>

</head>

<body text=&quot;#F0FFFF&quot; bgcolor=&quot;#191970&quot; link=&quot;#F0FFFF&quot; onload=&quot;runSlideShow()&quot;>
&lt;

<center><Table border=0 Cellspacing=0 Cellpadding=0>
<tr>
<td Width=&quot;450&quot; Height=&quot;72&quot; id=&quot;VU&quot;><a href=&quot; SRC=&quot;banner1.jpg&quot; Name=&quot;SlideShow&quot; height=72 width=450 Alt=&quot;PC World for the latest in hardware reviews&quot;></a></td>
</tr>
</table></center>
etc
etc
etc
etc

Any help much appreciated!

Huitzilopochtli
 
Hello

Many thanks for your message.

It's strange, but though I can see the < in the code I have pasted above, I can't actually see it in Notepad!

Many thanks, though - it's done the trick.

Best wishes

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top