永发信息网

gridview 怎么追加插入数据

答案:1  悬赏:40  手机版
解决时间 2021-03-07 05:33
  • 提问者网友:战皆罪
  • 2021-03-07 00:43
gridview 怎么追加插入数据
最佳答案
  • 五星知识达人网友:毛毛
  • 2021-03-07 01:20
动态生成List<string>,然後绑定到GridView1
看看这个,用STATIC变量来保存数据,提交的时候移除。
--CS
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

using System.Collections.Generic;
public partial class Default4 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Session["A"] = "AAA";
}
}
//通过sessionid能获取维一的客户段内容
protected void addyearPro_Click(object sender, EventArgs e)
{
string SessionID = Session.SessionID;
string Name = NAME.Text;
string Qty = NUM.Text;
Product pc = new Product(Name, Qty);

List<Product> newPList = ManagerProcut.Find(SessionID);
if (newPList != null)
{
newPList.Add(pc);
}
else
{
newPList = new List<Product>();
newPList.Add(pc);
ManagerProcut.pc.Add(SessionID, newPList);
}
GridView1.DataSource = newPList;
GridView1.DataBind();
}
//来临时保存客户端的内容
public static class ManagerProcut
{
public static Dictionary<string, List<Product>> pc = new Dictionary<string, List<Product>>();
public static List<Product> Find(string Key)
{
if (pc.ContainsKey(Key))
{
return pc[Key];
}
else
{
return null;
}
}
public static bool Remove(string Key)
{
if (pc.ContainsKey(Key))
{
return pc.Remove(Key);
}
else
{
return false;
}
}
}

public class Product
{
public Product(string ProductName,string Qty)
{
this._ProductName = ProductName;
this._Qty = Qty;
}
private string _ProductName;
private string _Qty;
public string ProductName
{
get { return _ProductName; }
set { _ProductName = value; }
}
public string Qty
{
get { return _Qty; }
set { _Qty = value; }
}
}
protected void Button1_Click(object sender, EventArgs e)
{
foreach (GridViewRow gr in GridView1.Rows)
{
Response.Write("<p>新记录:");
foreach (TableCell tc in gr.Cells)
{
Response.Write("<br/>");
Response.Write(tc.Text);
}
Response.Write("</p>");
}
string SessionID = Session.SessionID;
ManagerProcut.pc.Remove(SessionID);//移除
}
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
String Sessionid = Session.SessionID;
GridViewRow gr = GridView1.Rows[e.RowIndex];
string ProductName = gr.Cells[0].Text;

List<Product> per = ManagerProcut.Find(Sessionid);
if (per.Count > 0)
{
Product pdt = null;
foreach (Product pr in per)
{
if (pr.ProductName == ProductName)
{
pdt = pr;
break;
}
}
if (pdt != null)
{
bool m = per.Remove(pdt);
if (m)
{
GridView1.DataSource = per;
GridView1.DataBind();
}
}
}
}
_aspx
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http //www w3 org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http //www w3 org/1999/xhtml">
<head id="Head1" runat="server">
<title>未命名页面</title>
</head>
<body>
<form id="Form1" runat="server">
<div>
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" Width="185px" OnRowDeleting="GridView1_RowDeleting">
<Columns>
<asp:BoundField HeaderText="产品名称" DataField="PRoductName" />
<asp:BoundField HeaderText="产品数量" DataField="QTY" />
<asp:ButtonField HeaderText ='Delete' CommandName="DELETE" Text="Delete"/>
</Columns>
</asp:GridView>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="11%" style="height: 24px">
<asp:TextBox ID="NAME" runat="server" /></td>
<td width="14%" style="height: 24px">
<asp:TextBox ID="NUM" runat="server" /></td>
<td width="75%" style="height: 24px">
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
<asp:Button ID="Button1" runat="server" Text="增加" OnClick="addyearPro_Click" /></td>
</tr>
</table>
<asp:Button ID="Button2" runat="server" Text="提交" OnClick="Button1_Click" />
</div>
</form>
</body>
</html>
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯