# File lib/cgikit/elements/textfield.rb, line 34
  def append_to_response( response, context )
    take_value(:value)
    take_value(:type)
    take_value(:size)
    take_value(:maxlength)

    html = "<input name=\"#{name_value(context)}\" type=\"#{@values[:type]}\""
    if @values[:value] and (@values[:type] != 'password') then
      html << " value=\"#{escaped_string(@values[:value])}\""
    end
    if @values[:size] then
      html << " size=\"#{@values[:size]}\""
    end
    if @values[:maxlength] then
      html << " maxlength=\"#{@values[:maxlength]}\""
    end
    html << other()
    html << enabled()
    html << '/>'
    response.content << html
  end