# File lib/cgikit.rb, line 3101
        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 << other_attributes_string
                to_s << '>'
                if @attr_value   then to_s << CKUtilities.escape_html(@attr_value) end
                to_s << '</textarea>'
        end