Hello,
I have a FormView to Insert records to the DB. It works fine. Here is the pattern of it :
<div>
<asp:FormView runat="server" ID="InquiryInsertID"
ItemType="VincitoreCRMApplication.Models.Inquiry" DefaultMode="Insert"
InsertItemPosition="FirstItem" InsertMethod="InsertItem"
OnItemCommand="ItemCommand" RenderOuterTable="false">
<InsertItemTemplate>
<fieldset class="form-horizontal">
<legend>Insert Inquiry Details</legend>
<asp:ValidationSummary runat="server" CssClass="alert alert-danger" />
<asp:DynamicControl Mode="Insert" DataField="InquiryDate" runat="server" />
<asp:DynamicControl Mode ...
Go to the complete details ...