# File lib/cgikit/component.rb, line 223
  def append_to_response( response, context )
    sync(context) do
      if !stateless? and context.has_session? then
        context.session.save_page(self) 
      end
      @template_node.append_to_response(response, context)
    end
  end