Hi,
with <bean:write name....> you're just displaying the field value. If you want it to be editable (i.e. be able to modifiy its value) you have to display it in an HTML element <input type=text ....>
so your code should be in
Struts 1.x :
I made the assumption, you've chosen html as a prfix for struts tags with a line like:
And of course you have to encapsulate the whole display in a form whose action would take care of taking into account the modifications (saving to database, ...)
You might want to have a look at
this example.
Regards
Franck