Iam getting this error code ;Line 5, char 45, unterminated string constant code 800A03F7

with the ff script. Please help.

var thisAd = 0;

function rotate() {
var adImages = new Array("images/green.gif",
"images/red.gif","images/gre.gif","images/
apple2.gif");
thisAd++;
if (thisAd == adImages.length) {
thisAd = 0;
}
document.getElementById("adBanner").
src = adImages[thisAd];
setTimeout(rotate, 3 * 1000);
}

I believe this is VB.NET Forum.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.