Filename: InsertItemTemplate
<InsertItemTemplate>
<table id="tbl">
<tr>
<th >
名前</th>
<td >
<asp:TextBox ID="tNameTextBox" runat="server" Width="256px" Text='<%# Bind("tName") %>' />
</td>
<th >
日時</th>
<td>
<asp:TextBox ID="tDateTextBox" runat="server" Text='<%# Bind("tDate") %>' />
</td>
</tr>
<tr>
<th >
Mail</th>
<td colspan="3">
<asp:TextBox ID="tMailTextBox" runat="server" Width="401px" Text='<%# Bind("tMail") %>' />
</td>
</tr>
<tr>
<th >
題名</th>
<td colspan="3" >
<asp:TextBox ID="tSubjectTextBox" runat="server" Width="458px"
Text='<%# Bind("tSubject") %>' />
</td>
</tr>
<tr>
<th >
本文</th>
<td colspan="3">
<asp:TextBox ID="tBodyTextBox" runat="server" Text='<%# Bind("tBody") %>' TextMode="MultiLine" Height="139px" Width="466px"/>
</td>
</tr>
<tr>
<th >
</th>
<td colspan="3">削除キー<asp:TextBox ID="tDeleteKeyTextBox"
runat="server" Text='<%# Bind("tDeleteKey") %>' TextMode="Password"/>
<asp:Button ID="InsertButton" runat="server" CausesValidation="True"
CommandName="Insert" Text="挿入" />
<asp:Button ID="CancelButton" runat="server"
CommandName="Cancel" Text="クリア" />
</td>
</tr>
</table>
</InsertItemTemplate>