Now I want to display a field in the record in the input
The writing method is as follows:
The code copy is as follows:
<input name="TypeMPhone" type="text" size="20" maxlength="40" value=<%=name%>>
But something went wrong
If the field to be displayed in the database is: abcd
Instead of abcd
In actual operation, only a is displayed in input
Solution:
The code copy is as follows:
<input name="TypeMPhone" type="text" size="20" maxlength="40" value="<%=name%>">