2013-04-08 54 views
0

我正在与C#-4.0 Asp.Net。 我想从GridView中的最终用户获取输入。像以前的数据lossted当点击添加按钮在GirdView Asp.Net

enter image description here

在DropDownList中或在文本框中输入我的加入则新的记录将增加,但以前的数据丢失了一些价值和点击。

enter image description here

的问题是当我改变的控制值时,它不保存在数据表中其所绑定。我如何将此值保存到DataTable。我在这里错过了什么代码?

设计师代码:背后

<%@ Page Title="" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="SaleOrder.aspx.cs" Inherits="Transactions_SaleOrder" %> 

<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %> 

<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" Runat="Server"> 
    <style type="text/css"> 
     .style1 
     { 
      width: 100%; 
     } 
     </style> 
</asp:Content> 
<asp:Content ID="Content2" ContentPlaceHolderID="FormHeader" Runat="Server"> 
    <p>Sale Order</p> 
</asp:Content> 
<asp:Content ID="Content3" ContentPlaceHolderID="FormBody" Runat="Server"> 
    <table class="style1"> 
     <tr> 
      <td> 
       <asp:Label ID="lblDate" runat="server" Text="Date : "></asp:Label> 
<asp:TextBox ID="txtSODate" runat="server"></asp:TextBox> 
       <asp:CalendarExtender ID="txtSODate_CalendarExtender" runat="server" 
        Enabled="True" TargetControlID="txtSODate" Format="dd/MM/yyyy" PopupButtonID="ImageButton1"> 
       </asp:CalendarExtender> 
       <asp:MaskedEditExtender ID="txtSODate_MaskedEditExtender" runat="server" 
       Enabled="True" Mask="99/99/9999" MaskType="Date" TargetControlID="txtSODate"> 
       </asp:MaskedEditExtender> 
       <asp:ImageButton ID="ImageButton1" runat="server" 
        ImageUrl="~/images/Calendar_scheduleHS.png" /> 
      </td> 
     </tr> 
     <tr> 
      <td> 
       Shift : 
       <asp:DropDownList ID="DropDownList1" runat="server" Width="300px"> 
        <asp:ListItem Value="Morning">MORNING</asp:ListItem> 
        <asp:ListItem Value="EVENING"></asp:ListItem> 
        <asp:ListItem Value="OTHERS"></asp:ListItem> 
       </asp:DropDownList> 
      </td> 
     </tr> 
     <tr> 
      <td> 
       <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" 
        CellPadding="4" ForeColor="#333333" GridLines="None" 
        onrowcommand="GridView1_RowCommand"> 
        <AlternatingRowStyle BackColor="White" ForeColor="#284775" /> 
        <Columns> 
         <asp:TemplateField HeaderText="Product"> 
          <ItemTemplate> 
           <asp:DropDownList ID="ddlProduct" runat="server" Width="300" 
           DataSource='<%# dtProductMaster %>' 
           DataTextField="PDescr" 
           DataValueField="PID" 
           > 
           </asp:DropDownList> 
          </ItemTemplate> 
         </asp:TemplateField> 
         <asp:TemplateField HeaderText="Qty"> 
          <ItemTemplate> 
           <asp:TextBox ID="txtQuan" runat="server" MaxLength="5" style="text-align:right" Text='<%# BIND("QUAN") %>'></asp:TextBox> 
           <asp:MaskedEditExtender ID="txtQuan_MaskedEditExtender" runat="server" Enabled="True" 
            Mask="99999" TargetControlID="txtQuan"> 
           </asp:MaskedEditExtender> 
          </ItemTemplate> 
          <ItemStyle HorizontalAlign="Right" /> 
         </asp:TemplateField> 
         <asp:ButtonField CommandName="ADD" Text="Add" /> 
         <asp:ButtonField CommandName="DELETE" Text="Delete" /> 
        </Columns> 
        <EditRowStyle BackColor="#999999" /> 
        <FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" /> 
        <HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" /> 
        <PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" /> 
        <RowStyle BackColor="#F7F6F3" ForeColor="#333333" /> 
        <SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" /> 
        <SortedAscendingCellStyle BackColor="#E9E7E2" /> 
        <SortedAscendingHeaderStyle BackColor="#506C8C" /> 
        <SortedDescendingCellStyle BackColor="#FFFDF8" /> 
        <SortedDescendingHeaderStyle BackColor="#6F8DAE" /> 
       </asp:GridView> 
      </td> 
     </tr> 
     <tr> 
      <td> 
       <asp:Button ID="btnSave" runat="server" Text="Save" Width="58px" /> 
      </td> 
     </tr> 
    </table> 
</asp:Content> 
<asp:Content ID="Content4" ContentPlaceHolderID="FormFooter" Runat="Server"> 
</asp:Content> 

C#代码:

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Web; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
using System.Data; 
public partial class Transactions_SaleOrder : System.Web.UI.Page 
{ 
    internal DataTable dtProductMaster_; 
    internal DataTable dtProductMaster 
    { 
     get 
     { 
      if (dtProductMaster_ == null) 
      { 
       clsData d = new clsData(); 
       d.Select("select PID, PEDESCR2 + ' ' + PEDESCR3 as PDescr From TBLPROD_MAST"); 
       dtProductMaster_ = d.DataTable; 
      } 
      return dtProductMaster_; 
     } 
    } 
    DataTable dtProductDet 
    { 
     get 
     { 
      if (ViewState["dtProductDet"] != null) 
      { 
       return (DataTable)ViewState["dtProductDet"]; 
      } 
      else 
      { 
       return null; 
      } 
     } 
     set 
     { 
      ViewState["dtProductDet"] = value; 
     } 
    } 

    protected void Page_Load(object sender, EventArgs e) 
    { 
     if (!Page.IsPostBack) 
     { 
      txtSODate.Text = DateTime.Now.Date.ToString("dd/MM/yyyy"); 
      //-- 
      dtProductDet = new DataTable("dtProductDet"); 
      dtProductDet.Columns.Add("PID", typeof(int)); 
      dtProductDet.Columns.Add("PName", typeof(string)); 
      dtProductDet.Columns.Add("Quan", typeof(decimal)); 
      dtProductDet.Rows.Add(0,"",0); 
      //-- 
     } 
     GridView1.DataSource = dtProductDet; 
     GridView1.DataBind(); 
    } 
    protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e) 
    { 
     switch (e.CommandName.ToUpper()) 
     { 
      case "ADD": 
       dtProductDet.Rows.Add(0, "", 0); 
       break; 
      case "DELETE": 
       dtProductDet.Rows.RemoveAt(Convert.ToInt32(e.CommandArgument)); 
       break; 
     } 
    } 
} 

我如何能实现我的目标。

+0

看起来你正在rebbackding回发gridview。你应该把最后两行写入'!IsPostback'块。 – 2013-04-08 12:58:31

+0

我试过了,但是现在不添加新行。 – 2013-04-08 13:00:26

+0

在数据添加到数据源之后,您需要在点击处理程序中重新绑定。在处理程序之前调用“Page_Load”。 – 2013-04-08 13:02:17

回答

0

我已经得到了解决方案。

问题是,当我在DropDownList或TextBox中编辑值时,它的值不会保存回与GridView和TextBox和DropDownList绑定的DataTable。 没有自动执行此操作的方法,因此我们必须编写手动代码以将值保存回DataTable。

当我问的问题添加按钮是在GridViewColumn,它是命令列,现在我已经添加了一个按钮在GridView页脚。

所以,当我点击“添加新行”按钮,页面被回传,在第一页加载事件触发,然后Button_Click事件触发。我在Page.Load事件上添加了代码,如果页面被回发,然后从GridView中选取数据并将其保存到DataTable中。

接下来Button_click事件触发,所以一个新行添加在DataTable中,而DataTable将在GridView的DataSource中分配,并且DataBind方法执行并重新生成GridView。我有一个DropDownList它也绑定到一个不同的DataView的GridView,以便DataBind()后,我必须手动选择DropDownList中的值按照保存在GridView的DataTable中。

protected void Page_Load(object sender, EventArgs e) 
{ 
    if (!Page.IsPostBack) 
    { 
     txtSODate.Text = DateTime.Now.Date.ToString("dd/MM/yyyy"); 
     //-- 
     dtProductDet = new DataTable("dtProductDet"); 
     dtProductDet.Columns.Add("PID", typeof(int)); 
     dtProductDet.Columns.Add("PName", typeof(string)); 
     dtProductDet.Columns.Add("Quan", typeof(decimal)); 
     dtProductDet.Rows.Add(0,"",0); 
     //-- 
     SetGridViewSource(); 
    } 
    else 
    { 
     DataTable dtPD = dtProductDet; 
     DropDownList ddlProd = null; 
     if (GridView1.Rows.Count > 0) 
     { 
      for (int i = 0; i < GridView1.Rows.Count; i++) 
      { 
       ddlProd = (DropDownList)GridView1.Rows[i].Cells[gvci_Prod].FindControl("ddlProduct"); 
       dtPD.Rows[i]["PID"] = Convert.ToInt32(ddlProd.SelectedItem.Value); 
       dtPD.Rows[i]["PName"] = ddlProd.SelectedItem.Text; 
       dtPD.Rows[i]["QUAN"] = ((TextBox)GridView1.Rows[i].Cells[gvci_Quan].FindControl("txtQuan")).Text; 
      } 
     } 
     dtProductDet = dtPD; 
    } 
} 


protected void btnAdd_Click(object sender, EventArgs e) 
{ 
    dtProductDet.Rows.Add(0, "", 0); 

    DataTable dtPDet = dtProductDet; 
    GridView1.DataSource = dtPDet; 
    GridView1.DataBind(); 


    DropDownList ddlProd = null; 
    DataRow drFind = null; 
    for (int i = 0; i < GridView1.Rows.Count; i++) 
    { 
     ddlProd = (DropDownList)GridView1.Rows[i].Cells[gvci_Prod].FindControl("ddlProduct"); 
     drFind = dtProductMaster.Rows.Find(dtPDet.Rows[i]["PID"]); 
     if(drFind != null) 
     { 
      ddlProd.SelectedIndex = dtProductMaster.Rows.IndexOf(drFind); 
     } 
    } 

} 
0

答案已经在之前的评论中给出。拼出来...

protected void Page_Load(object sender, EventArgs e) 
{ 
    if (!Page.IsPostBack) 
    { 
     txtSODate.Text = DateTime.Now.Date.ToString("dd/MM/yyyy"); 
     //-- 
     dtProductDet = new DataTable("dtProductDet"); 
     dtProductDet.Columns.Add("PID", typeof(int)); 
     dtProductDet.Columns.Add("PName", typeof(string)); 
     dtProductDet.Columns.Add("Quan", typeof(decimal)); 
     dtProductDet.Rows.Add(0,"",0); 
     //-- 
     GridView1.DataSource = dtProductDet; 
     GridView1.DataBind(); 
    } 
} 

protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e) 
{ 
    switch (e.CommandName.ToUpper()) 
    { 
     case "ADD": 
      dtProductDet.Rows.Add(0, "", 0); 
      break; 
     case "DELETE": 
      dtProductDet.Rows.RemoveAt(Convert.ToInt32(e.CommandArgument)); 
      break; 
    } 
    GridView1.DataBind(); 
} 
+0

它不起作用,虽然下次页面加载时,没有记录显示在网格中 – 2013-04-09 05:40:24

+0

什么是不工作?单击添加按钮时,是否将空行添加到DataTable中? – FastGeek 2013-04-09 10:41:05

+0

当点击添加按钮时,Gridview不会显示在页面上。 – 2013-04-09 11:37:42