こんにちは私は次のようにinsertItemTemplateを持っています、そして私がしたいのはユーザーに尋ねることなく、プログラムですべての値を自分で追加することです、もちろん、userID、picID、dateTimeはユーザーに尋ねるべきではありません、もちろんコメントフィールド、サイトに写真についてコメントを残しているので、ユーザーに聞いてみたいと思います:)...シンプルに見えますが、本当にイライラします。
<InsertItemTemplate>
<span style="">UserID:
<asp:TextBox Visible="false" ID="UserIDTextBox" runat="server" Text='<%# Bind("UserID") %>' />
<br />CommentForPicID:
<asp:TextBox Visible="false" ID="CommentForPicIDTextBox" runat="server"
Text='<%# Bind("CommentForPicID") %>' />
<br />Comment:
<asp:TextBox TextMode="MultiLine" ID="CommentTextBox" runat="server" Text='<%# Bind("Comment") %>' />
<br />DateAdded:
<asp:TextBox Visible="false" ID="DateAddedTextBox" runat="server"
Text='<%# Bind("DateAdded") %>' />
<br />
<asp:Button ID="InsertButton" runat="server" CommandName="Insert"
Text="Insert" />
<asp:Button ID="CancelButton" runat="server" CommandName="Cancel"
Text="Clear" />
<br /><br /></span>
</InsertItemTemplate>