I have session values filled with record data. If a record field is empty the following code fills "size="57"" into the form field.

<input type="text" name="Strasse-Ort" value=<%=session{"strasse"}%> size="57" /></td>

The value of session{strasse} is "". If I put a "" directly there the field is empty. If the fiels has a value > "" everything works.

Your html is malformed. Try this:

<input type="text" name="Strasse-Ort" value="<%=session{"strasse"}%>" size="57" /></td>

You were missing the quotes around the value attribute.

Regards,

   Aparajita
   www.aparajitaworld.com

   "If you dare to fail, you are bound to succeed."
   - Sri Chinmoy   |   www.srichinmoylibrary.com


_______________________________________________
Active4D-dev mailing list
[email protected]
http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/

Reply via email to