首页 | 源码下载 | 编程控件 | 书籍教程 | 应用方案 | 设计素材 | 项目交易 | 开发文档 | 商业源码 | 我的帐号
登陆我的帐号
帐 号:
密 码:
我还不是会员,需要注册!

截止2004年12月16日
本站源码总量(商业源码除外)RAR压缩为 4,206,733 KB。其中免费源码为 1,124,495 KB,会员源码为 3,082,238 KB
C/C++ 129,555 KB
Delphi 1,258,381 KB
Java 120,937 KB
.Net 36,886 KB
PowerBuilder 954,525 KB
Visual Basic 923,454 KB
ASP 259,795 KB
JSP 4,987 KB
其他 94,723 KB

本站是中国频道、中资源、时代互联顶级代理:注册国际域名70元,国内域名130元,各类ASP、PHP、JSP空间8折优惠!
本站承担各类网站制作开发及方案策划,项目经验丰富,欢迎洽谈!

网站动态
网站春节前夕再次改版!
现在下载速度大幅提高!
想免费下载源码吗?
还有众多资源恭候大家免费…
道歉!
关于资源更新的说明
关于下载错误的原因!
源码资源网新版网站投入运…

当前位置:源码资源网首页 > 开发文档首页 > .Net >asp.net 2.0中一次性更新所有GRIDVIEW的记录

asp.net 2.0中一次性更新所有GRIDVIEW的记录
人气:7 文字大小:     作者:

在asp.net 2.0中,gridview控件是十分不错的控件。有的时候,可能一个GRIDVIEW控件中的各行都是文本框,如何一次性更新所有修改过的记录呢?有两种方法,一种是使用sqldatasource来更新所有记录,但这个方法比较慢,因为每更新一条记录都要建立数据连接并执行updatecommand,会影响性能,但还是先来看下实现方法:



<%@ Page Language="C#" %>
<script runat="server">


void Button1_Click object sender, EventArgs e)


{


for  int i = 0; i < GridView1.Rows.Count; i++)


{


GridViewRow row = GridView1.Rows[i];


SqlDataSource1.UpdateParameters[0].DefaultValue =   TextBox)row.Cells[0].FindControl "TextBox2")).Text;


SqlDataSource1.UpdateParameters[1].DefaultValue =   TextBox)row.Cells[1].FindControl "TextBox3")).Text;


SqlDataSource1.UpdateParameters[2].DefaultValue = GridView1.DataKeys[i].Value.ToString );


SqlDataSource1.Update );


}


}



</script>


<html xmlns="http://www.w3.org/1999/xhtml" >


<head runat="server">


<title>Untitled Page</title>


</head>


<body>


<form id="form1" runat="server">


<div>


<asp:GridView ID="GridView1" Runat="server" DataSourceID="SqlDataSource1" DataKeyNames="CustomerID"


AutoGenerateColumns="False">


<Columns>


<asp:TemplateField SortExpression="CustomerID" HeaderText="CustomerID">


<ItemTemplate>


<asp:TextBox Runat="server" Text=’<%# Bind "CustomerID") %>’ ID="TextBox1"></asp:TextBox>


</ItemTemplate>


</asp:TemplateField>


<asp:TemplateField SortExpression="CompanyName" HeaderText="CompanyName">


<ItemTemplate>


<asp:TextBox Runat="server" Text=’<%# Bind "CompanyName") %>’ ID="TextBox2"></asp:TextBox>


</ItemTemplate>


</asp:TemplateField>


<asp:TemplateField SortExpression="ContactName" HeaderText="ContactTitle">


<ItemTemplate>


<asp:TextBox Runat="server" Text=’<%# Bind "ContactTitle") %>’ ID="TextBox3"></asp:TextBox>


</ItemTemplate>


</asp:TemplateField>


</Columns>


</asp:GridView>


<asp:SqlDataSource ID="SqlDataSource1" Runat="server"


SelectCommand="SELECT [CustomerID], [CompanyName], [ContactName], [ContactTitle] FROM [Customers]"


UpdateCommand="UPDATE [Customers] SET [CompanyName] = @CompanyName, [ContactTitle] = @ContactTitle WHERE [CustomerID] = @CustomerID"


ConnectionString="<%$ ConnectionStrings:AppConnectionString1 %>">


<UpdateParameters>


<asp:Parameter Type="String" Name="CompanyName"></asp:Parameter>


<asp:Parameter Type="String" Name="ContactTitle"></asp:Parameter>


<asp:Parameter Type="String" Name="CustomerID"></asp:Parameter>


</UpdateParameters>


</asp:SqlDataSource>


<asp:Button ID="Button1" Runat="server" Text="Button" OnClick="Button1_Click" />&nbsp;



</div>


</form>


</body>


</html>



另外一个方法是用组合SQL语句来进行的,速度比较快,原理也容易明白



<%@ Page Language="C#" %>


<%@ Import Namespace="System.Text" %>


<%@ Import Namespace="System.Data.SqlClient" %>


<script runat="server">



void Button1_Click object sender, EventArgs e)


{


StringBuilder query = new StringBuilder );



for  int i = 0; i < GridView1.Rows.Count; i++)


{


GridViewRow row = GridView1.Rows[i];


string value1 =   TextBox)row.Cells[0].FindControl "TextBox2")).Text.Replace "’","’’");


string value2 =   TextBox)row.Cells[1].FindControl "TextBox3")).Text.Replace "’","’’");


string value3 = GridView1.DataKeys[i].Value.ToString );



query.Append "UPDATE [Customers] SET [CompanyName] = ’")


.Append value1).Append "’ , [ContactTitle] = ’")


.Append value2).Append "’ WHERE [CustomerID] = ’")


.Append value3).Append "’;\n");



}



SqlConnection con = new SqlConnection ConfigurationSettings.ConnectionStrings["AppConnectionString1"].ConnectionString);


SqlCommand command = new SqlCommand query.ToString ), con);


con.Open );


command.ExecuteNonQuery );


con.Close );


}



void Page_Load object sender, EventArgs e)


{


if  !Page.IsPostBack)


{


SqlConnection con = new SqlConnection ConfigurationSettings.ConnectionStrings["AppConnectionString1"].ConnectionString);


SqlCommand command = new SqlCommand "SELECT [CustomerID], [CompanyName], [ContactName], [ContactTitle] FROM [Customers]", con);



con.Open );


GridView1.DataSource = command.ExecuteReader );


GridView1.DataBind );


con.Close );


}


}


</script>



<html xmlns="http://www.w3.org/1999/xhtml" >


<head runat="server">


<title>Untitled Page</title>


</head>


<body>


<form id="form1" runat="server">


<div>


<asp:GridView ID="GridView1" Runat="server" DataKeyNames="CustomerID"


AutoGenerateColumns="False">


<Columns>


<asp:TemplateField SortExpression="CustomerID" HeaderText="CustomerID">


<ItemTemplate>


<asp:TextBox Runat="server" Text=’<%# Bind "CustomerID") %>’ ID="TextBox1"></asp:TextBox>


</ItemTemplate>


</asp:TemplateField>


<asp:TemplateField SortExpression="CompanyName" HeaderText="CompanyName">


<ItemTemplate>


<asp:TextBox Runat="server" Text=’<%# Bind "CompanyName") %>’ ID="TextBox2"></asp:TextBox>


</ItemTemplate>


</asp:TemplateField>


<asp:TemplateField SortExpression="ContactName" HeaderText="ContactTitle">


<ItemTemplate>


<asp:TextBox Runat="server" Text=’<%# Bind "ContactTitle") %>’ ID="TextBox3"></asp:TextBox>


</ItemTemplate>


</asp:TemplateField>


</Columns>


</asp:GridView>


<asp:Button ID="Button1" Runat="server" Text="Button" OnClick="Button1_Click" />&nbsp;


</div>


</form>


</body>


</html>




 

文章出处:   发表时间:2004-11-22 23:00:50

1条数据记录,分1页显示 上一页 < [1] > 下一页
相关文章  
[源码下载] · comicq源代码
[书籍教程] · VC++ 6.0数据库系统开发实例导航
[书籍教程] · Delphi 7数据库编程学习捷径
[书籍教程] · Delphi百例精解
[书籍教程] · DELPHI综合开发文档

相关评论  
 当前没有评论!
请登陆后再来发表评论!
当前位置:源码资源网首页 > 开发文档首页 > asp.net 2.0中一次性更新所有GRIDVIEW的记录
会员升级 | 广告服务 | 网站开发 | 联系我们 | 网站动态 | 客户反馈

CodeRes.com 保留所有权利 2004
本站所有资源仅供学习参考,版权归原作者所有,如侵犯了您的权益请与我们联系