# File lib/cgikit.rb, line 1607
 def to_s
		to_s = "<textarea name=\"#@attr_name\""
		if @attr_columns then to_s << " cols=\"#@attr_columns\"" end
		if @attr_rows    then to_s << " rows=\"#@attr_rows\""    end
		to_s << '>'
		if @attr_value   then to_s << @attr_value end
		to_s << '</textarea>'
	end