Answered
Empty Space Generated by Coldfusion
Using Coldfusion to create a MySQL database entry creator and
editor. On the page is a textarea tag, and when I run the page
there is a lot of empty lines in the box. The entry is there, just
below the bottom edge of the textarea box.
The code is:
<th colspan="3">
<!--- Gets the Full Event for the News & Events Page --->
<cftextarea name="lgEvent"
id="lgEvent"
cols="65"
rows="5"
label="lgEvent"
required="yes"
richtext="no"
maxlenght="1000"
>
<cfoutput>
#FullEvent#
</cfoutput>
</cftextarea>
</th>
How do I fix this. This is not the first time I am getting unneeded lines on my web pages. Empty lines are also being inserted into the HTML code.
The code is:
<th colspan="3">
<!--- Gets the Full Event for the News & Events Page --->
<cftextarea name="lgEvent"
id="lgEvent"
cols="65"
rows="5"
label="lgEvent"
required="yes"
richtext="no"
maxlenght="1000"
>
<cfoutput>
#FullEvent#
</cfoutput>
</cftextarea>
</th>
How do I fix this. This is not the first time I am getting unneeded lines on my web pages. Empty lines are also being inserted into the HTML code.
