# File lib/cgikit/elements/submit.rb, line 67
  def append_to_response( response, context )
    take_value(:value)

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