# File lib/cgikit/elements/text.rb, line 28
  def append_to_response( response, context )
    take_value(:value)
    html = "<textarea name=\"#{name_value(context)}\""
    html << other()
    html << enabled()
    html << '>'
    if @values[:value] then html << escaped_string(@values[:value]) end
    html << '</textarea>'
    response.content << html
  end