When you have spaces in the value text it assumes the space is the end of the value attribute. To make it display the whole text, includiong the space, you need to enclose the value in quotes (this is good practice anyway).
Code:
Response.Write("<td><input type='text' name='sect_area' value='" & rs("sect_area") & "'></td>")