# File lib/cgikit.rb, line 2325
        def to_s
                to_s  = ''

                if @attr_list then
                        @attr_list.each_with_index do | item, index |
                                parent.take_value( @attr_item, item )
                                to_s << _iteration( index )
                        end
                elsif @attr_count then
                        @attr_count.times do | index |
                                to_s << _iteration( index )
                        end
                end
                to_s
        end