The tl:taskList and tl:task tags output a set of tasks to the response and are used as follows: 11.<tl:tasklist></tl:tasklist> 12. 13.<tl:task name="feed the dog"></tl:task><p> <tl:task name="feed the dog"> 14.<tl:task name="do the laundry"></tl:task> <tl:task name="do the laundry"> 15. The tl:task tag supplies information about a single task while the tl:taskList tag does the final output. The taghandler for tl:taskList is TaskListTag. The tag handler for tl:task is TaskTag. Both tag handlers extendBodyTagSupport. Which allows the tl:taskList tag to get the task names from its nested tl:task children?() </tl:task><
A、