simple prob

hey i have created folowing for the presentation purpose in servlet..

my prob is that bold portion is not coming under the fieldset..its coming outside of the fieldset..

out.println("<FIELDSET>");

out.println("<LEGEND>");

out.println("Group One");

out.println("</LEGEND>");

out.println("Field 1A: <INPUT TYPE=TEXT NAME=field VALUE=Field >");

out.println("
");

out.println("Field 1B: <INPUT TYPE=TEXT NAME=field1B VALUE=Field >");

out.println("
");

out.println("Field 1C: <INPUT TYPE=TEXT NAME=field1C VALUE=Field C>");

out.println("</FIELDSET>");

[683 byte] By [abhit_kumara] at [2007-10-1 2:10:55]
# 1

Must be a problem with your browser because its working when i try it.

Another tip= always use quotes around your values

in stead of <INPUT TYPE=TEXT NAME=field1C VALUE=Field C>

you need

<INPUT TYPE="TEXT" NAME="field1C" VALUE="Field C">

pgeuensa at 2007-7-8 10:40:41 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
yes..i think its the problem of browser..i have applied quote also..now in this case ..whats he solution for this,if browser not support.needs u r suggestion
abhit_kumara at 2007-7-8 10:40:41 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
I never heard of a browser which didn't support HTML. Writing HTML code with out.println() is messy stuff... I wonder when you will think of separating display and processing logic.***Annie***
annie79a at 2007-7-8 10:40:41 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
what browser are you using to display this ?did you follow correct HTML syntax ?Switch to a browser that does supoort it
pgeuensa at 2007-7-8 10:40:41 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...