Double run code behind if table has attribute background="#00000"

karlhaak

Newcomer
Joined
Feb 2, 2004
Messages
5
To whom it may concern.

A few days ago I came across the following behavior.

If a html table element has the attribute background the code behind the page will be called twice.

I had inherited this page by another developer and striped it down until I came out with the following extract. Of course there is no attribute background for table an you can just ommit it. This will also stop the code from being called twice.

Hope this will save someone else valuable time. I looked for explanations on the web but could not find any.

regards

Karl Haak
www.karlhaak.de



Code:
<!doctype html public "-//w3c//dtd html 4.01 transitional//en">
<HTML>
	<HEAD>
		<title id="lblMarketplace">eMarketplace</title>
	</HEAD>
	<body>
			<table background="#000000">
			</table>
	</body>
</HTML>
 
Back
Top