データベースから入力したグリッドビューがあります。ユーザーがグリッドビューを編集して追加できるようにします。変更/追加が完了したら、データベースに送信します。誰かがこれを行う方法を教えてもらえますか?
これはこれまでの私のコードです
<asp:GridView ID="Grd" runat="server" AutoGenerateColumns="False" OnRowEditing="Grds_RowEditing"
OnRowCancelingEdit="Grd_RowCancelingEdit" OnRowUpdating="Grd_RowUpdating" Width="500px">
<Columns>
<asp:TemplateField HeaderText="Name">
<ItemTemplate>
<asp:HiddenField ID="NameID" runat="server" Value='<%# Bind("ID")%>' />
<asp:Label ID="LblName" runat="server" Text='<%# Bind("Name")%>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Date">
<EditItemTemplate>
<asp:TextBox ID="TxtDate" runat="server" Text='<%# Bind("Date") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="LblDate" runat="server" Text='<%# Bind("Date")%>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:CommandField ShowEditButton="True" />
<asp:CommandField ShowDeleteButton="True" />
</Columns>
</asp:GridView><asp:Button ID="btnok" Text="OK" Height="25" Width="25" runat="server" />
とコードビハインド
protected void Page_Load(object sender, EventArgs e)
{
BindGrid(int.Parse(hfID.Value));
}
protected void BindGrid(int iPerson)
{
DataContext dc = new DataContext(ConfigurationManager.ConnectionStrings["DB"].ConnectionString);
var qry = from p in dc.GetDetails(iPerson)
select p;
Grd.DataSource = qry;
Grd.DataBind();
}
protected void Grd_RowEditing(object sender, GridViewEditEventArgs e)
{
Grd.EditIndex = e.NewEditIndex;
//Bind data to the GridView control.
BindGrid(int.Parse(hfID.Value));
}
protected void Grd_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
{
Grd.EditIndex = -1;
BindGrid(int.Parse(hfID.Value));
}
protected void Grd_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
}
protected void btOK_Click(object sender, EventArgs e)
{
//update the database with changes
}