About Question com.enthuware.ets.scwcd.v5.2.539 :
Posted: Wed May 04, 2011 4:31 pm
Hi,
<form action='/jsp/myjsp.jsp'>
AccountId : <input type=text name=acctid/><br/>
Amount : <input type=text name=amt/><br/>
<input type=submit>
</form>
in this case, for example Mozilla 3.6.3 will send request like /jsp/myjsp.jsp?acctid/=test1&amt/=test2
you need to cover attribute values with " or ' in the form.
<form action='/jsp/myjsp.jsp'>
AccountId : <input type=text name=acctid/><br/>
Amount : <input type=text name=amt/><br/>
<input type=submit>
</form>
in this case, for example Mozilla 3.6.3 will send request like /jsp/myjsp.jsp?acctid/=test1&amt/=test2
you need to cover attribute values with " or ' in the form.