1
我需要用3文本框中場 如何動態地添加DataTable中使用文本字段爲ASP.NET
它的工作原理,但問題是我不能保存預覽記錄「引起的數據動態地添加行表重寫事件中的對象。
private void AgregarFila()
{
dt.Columns.Add("Fecha", typeof(String));
dt.Columns.Add("Documento", typeof(String));
dt.Columns.Add("Folio", typeof(Int32));
for (int i = 0; i <= 2; i++) // It is only for testing
{
dtRow = dt.NewRow();
dtRow["Fecha"] = Session["HCfecha"];
dtRow["Documento"] = Session["HCDocumento"];
dtRow["Folio"] = Session["HCFolio"];
dt.Rows.Add(dtRow);
}
gvHistoriaLaboral.DataSource = dt;
gvHistoriaLaboral.DataBind();
}
View.aspx
<asp:DataGrid ID="gvHistoriaLaboral" GridLines="None" CssClass="table table-striped" runat="server"></asp:DataGrid>
幫助!
請澄清:你是說數據不會保存,當你綁定到網格沒有顯示出來?如果在你的FOR LOOP之後運行dt.AccepChanges()。 –