Hi, We came across a strange behavior while using html tag. Actually the issue was because of improper usage of the tag. As a result of that, the page was getting submitted 3 times in Mozilla Firefox and 2 times in IE7. Here is the issue.
<link rel="stylesheet" type="text/css" title="Style" href=''/css/image.css'>
This was the code that we were using in one of our J2EE application. When we inspected the request and response (using HTTP Watch), we found out that the page was requested 3 times from the server. We found out that the additional "quote" after href=
is causing the problem. We were not able to find out the reason why this was causing multiple page submissions. Is it because, the additional quote makes the href
empty and because of that browser tries to load the styleclass
from the same URL that loaded the page?
Can someone please help to find out the reason why this is happening? Any help will be greatly appreciated.