Hi,
I've a servlet sending to the mobile browser the following XHTML MP page:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN"
"http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<head>
<title>
TIM
</title>
<link href="routeAssist.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<p>
<img src="./images/logo.png" alt="Logo" />
</p>
<h5> Configure </h5>
<form action="logic" method="post">
<table>
<tr>
<td class="headingCell">
<b> Start: </b>
</td>
<td class="headingCell">
<p>
<input name="startDate" value="02-12-2005-15.44" size="7" class="town" />
</p>
</td>
</tr>
<tr>
<td class="headingCell">
<b> Days: </b>
</td>
<td class="headingCell">
<p>
<input type="radio" value="0" name="setOfDays" checked="checked" />Week<br />
<input type="radio" value="1" name="setOfDays" />Weekend
</p>
</td>
</tr>
<tr>
<td class="headingCell">
<b> When: </b>
</td>
<td class="headingCell">
<p>
From: <input name="startHour" value="7.00" class="town" size="3" /> <br />
To: <input name="endHour" value="20.00" class="town" size="3"/>
</p>
</td>
</tr>
<tr>
<td class="headingCell">
<b> What: </b>
</td>
<td class="headingCell">
<p>
<input type="radio" value="TrafficWebCam"
id="allEvents" name="mode" checked="checked" />All<br/>
<input type="radio" value="TrafficWebCam_"
id="closeEvents" name="mode" />Close
<input name="radius" class="cap" value="3"
size="3" /> Km.
</p>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<p>
<input type="submit" value="OK" />
<input type="hidden" name="action" value="6"/>
</p>
</td>
</tr>
</table>
</form>
<p>
<a href="./index.jsp">Back</a>
</p>
</body>
</html>
and this sometimes causes the browser to crash (6680, 6630), sometimes it does not display properly (I cannot check check boxes) and when I hit submit the browser crashes. This usually happen if a reach the page after a few navigation steps rather than directly.
Does anyone has any idea about this behaviour?
Thanks
Paola



