(from "Top Questions about DataGrid Web Server Control")
I know this is easy, but never seem to remember the syntax for the EditItemTemplate stuff.
Top Questions about the DataGrid Web Server ControlStatic text for label:
Text='<%# DataBinder.Eval(Container, "DataItem.genre") %>'
DropDownList bound to DataSet:
<asp:DropDownList id=DropDownList4 runat="server"
DataSource="<%# DsBooks1 %>" DataMember="Genre"
DataTextField="genre" DataValueField="genre" Width="160px">
Same article has
this snippet about checkboxes in the datagrid, like you'd see in hotmail, etc.