I am trying to set a text into a textfield when some conditions are met. I have this textfield:
<input name="textrow1" type="text" size="25"/>
I don't want to use the value attribute. When I have a value for it I instead use Response.Write("textfieldvalue" (Then it is not editable). But also one time during a session I might have to change this to an editable textfield, i.e. the textrow1 with the "textfieldvalue" in.
Is there a way in asp to set the value of a textfield, such as textrow1.setText("textfieldvalue"? Without using javascript!
Thanks for all your help
<input name="textrow1" type="text" size="25"/>
I don't want to use the value attribute. When I have a value for it I instead use Response.Write("textfieldvalue" (Then it is not editable). But also one time during a session I might have to change this to an editable textfield, i.e. the textrow1 with the "textfieldvalue" in.
Is there a way in asp to set the value of a textfield, such as textrow1.setText("textfieldvalue"? Without using javascript!
Thanks for all your help