I have a form that allows a user to update their information. It pulls the current information from an Access Database. When it updates the database, it automatically is adding a paragraph return and a tab to the beginning of the text area infomation.
Using the Trim function, the HTML looks fine, but the information in the database has the added "paragraph break and tab". I am using CFUPDATE to update the database.
Here is the code from the "Form":
Agency Profile:
Using the Trim function, the HTML looks fine, but the information in the database has the added "paragraph break and tab". I am using CFUPDATE to update the database.
Here is the code from the "Form":
Agency Profile:
Code:
<Textarea name="agency_profile" cols="50" rows="10">
<CFIF NewRecord is "No">
<CFoutput query="Agency_Info">#Trim(agency_profile)# </CFOUTPUT>
</CFIF>