C
ceo
Hi,
I have a JSP with following HTML code. I do a tiles:insert to load the
"details" page within the "main" page. Using IE 6.0+SP1 when I launch
the main page it is loaded but the everything after the tiles:insert
doesn't appear in the HTML source code. So the details page within the
main page is blank. This happens with IE sporadically, I didn't notice
this happen with NN 7.2. I'm using Tomcat 4.1 web server. I checked the
web server logs and I can't find any Java exceptions.
If you notice the HTML source below, the page is not fully loaded. That
is, the following is the last line in the HTML:
<td height=100%><a name="maincontent"></a>
I put some debug statements in the Java code that generates the details
page and while the code is getting executed, the browser finishes
loading the page without the details page.
Could this be a client issue? If so, IE only issue? Even with IE why
does it happen sporadically?
One interesting observation: Whenever the main page loads without the
details page, I hit the Refresh icon in IE and this time the browser
waits till the whole details page java code is executed and the details
page also shows up.
Appreciate any help debugging this issue.
Thanks,
Ceo
mainLayout.jsp
==============
<html>
<head>
[SNIP]
<td>
<table width="100%" height=100% border="0" cellspacing="0"
cellpadding="0">
<tr>
<td height=100%><a name="maincontent"></a>
<tiles:insert attribute="details.pane" />
</td>
</tr>
</table>
</td>
HTML source when the page is viewed
====================================
<html>
<head>
[SNIP]
<td>
<table width="100%" height=100% border="0" cellspacing="0"
cellpadding="0">
<tr>
<td height=100%><a name="maincontent"></a>
I have a JSP with following HTML code. I do a tiles:insert to load the
"details" page within the "main" page. Using IE 6.0+SP1 when I launch
the main page it is loaded but the everything after the tiles:insert
doesn't appear in the HTML source code. So the details page within the
main page is blank. This happens with IE sporadically, I didn't notice
this happen with NN 7.2. I'm using Tomcat 4.1 web server. I checked the
web server logs and I can't find any Java exceptions.
If you notice the HTML source below, the page is not fully loaded. That
is, the following is the last line in the HTML:
<td height=100%><a name="maincontent"></a>
I put some debug statements in the Java code that generates the details
page and while the code is getting executed, the browser finishes
loading the page without the details page.
Could this be a client issue? If so, IE only issue? Even with IE why
does it happen sporadically?
One interesting observation: Whenever the main page loads without the
details page, I hit the Refresh icon in IE and this time the browser
waits till the whole details page java code is executed and the details
page also shows up.
Appreciate any help debugging this issue.
Thanks,
Ceo
mainLayout.jsp
==============
<html>
<head>
[SNIP]
<td>
<table width="100%" height=100% border="0" cellspacing="0"
cellpadding="0">
<tr>
<td height=100%><a name="maincontent"></a>
<tiles:insert attribute="details.pane" />
</td>
</tr>
</table>
</td>
HTML source when the page is viewed
====================================
<html>
<head>
[SNIP]
<td>
<table width="100%" height=100% border="0" cellspacing="0"
cellpadding="0">
<tr>
<td height=100%><a name="maincontent"></a>