# File lib/cgikit.rb, line 1507
 def to_s
		to_s  = ''
		index = 0
		parser = CKHTMLParser.new( parent, body )

		@attr_list.each { | item |
			# set item
			CKBinding.bind( parent, @attr_item, item )
			
			# set index
			CKBinding.bind( parent, @attr_index, index )
			
			# parse
			to_s << parser.parse

			if index >= @attr_count then break end
			index += 1
		}
		to_s
	end