I am storing value by the following
<td>Name of Person</td>
<td><input type="text" width="100px" name="vname" value=<%=vname% >>
</td>
When I enter 'Vikas Kumar' and press enter key only 'Vikas' value is retained and 'Kumar' is lost.
Why this happens?
<td>Name of Person</td>
<td><input type="text" width="100px" name="vname" value=<%=vname% >>
</td>
When I enter 'Vikas Kumar' and press enter key only 'Vikas' value is retained and 'Kumar' is lost.
Why this happens?
Comment