FormView Template Example
Example Summary and Logic
The FormView control is similar to the DetailsView. Rather than
using field tags like <asp:BoundField>, the FormView specifies its data using template
tags like <ItemTemplate>.
Normally (i.e., when no adapter is used) the FormView renders a <table> to lay out the
header, footer, paging and item data areas.
An adapter can be used to replace this <table> with a few nested <div> tags whose
appearance and position is easily styled with CSS.
Working Example