使⽤Gridview插⼊新记录
在ASP 2.0中,加⼊了许多新的功能和控件,相⽐ASP.NET 1.0/1.1,在各⽅⾯都有了很⼤的提⾼。其中,在数据控件⽅⾯,增加了不少控件,其中的Gridview控件功能⼗分强⼤。
在ASP 2.0中,加⼊了许多新的功能和控件,相⽐ASP.NET 1.0/1.1,在各⽅⾯都有了很⼤的提⾼。其中,在数据控件⽅⾯,增加了不少控件,其中的Gridview控件功能⼗分强⼤。
1、使⽤Gridview插⼊新记录
在Gridview控件中,如果想实现在Gridview中,实现在Gridview控件的最后⼀⾏,提供⼀个空⽩⾏给⽤户输⼊要输⼊的记录,那⽆疑是很⽅便的。下⾯将介绍其实现⽅法。
⾸先,我们打算在让⽤户进⾏选择,当⽤户需要新增⼀记录时,便点击新增按钮,之后在Gridview的最后⼀⾏⾥,显⽰⼀个空⽩⾏,让⽤户按字段进⾏输⼊,当⽤户决定不输⼊新空⽩记录时,可以按"cancel"按钮返回,该空⽩⾏消失。要实现这样的效果,我们可以充分利⽤Gridview的footer的模版功能进⾏⾃定义,因为有3列,所以,在每⼀列的footer模版中,定义如下:
<asp:Gridview ID="Gridview1" Runat="server" DataSourceID="SqlDataSource1" DataKeyNames="CustomerID" AutoGenerateColumns="False" ShowFooter="True">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:Label ID="CustomerIDLabel" Runat="Server"><%# Eval("CustomerID") %></asp:Label>
</ItemTemplate>
<FooterTemplate>
<asp:TextBox ID="CustomerIDTextBox" Runat="server"></asp:TextBox>
</FooterTemplate>
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<asp:Label ID="CompanyNameLabel" Runat="Server"><%# Eval("CompanyName") %></asp:Label>
</ItemTemplate>
<FooterTemplate>
<asp:TextBox ID="CompanyNameTextBox" Runat="server"></asp:TextBox>
</FooterTemplate>
</asp:TemplateField>
<asp:TemplateField>
<FooterTemplate>
<asp:DropDownList ID="ContactTitleDropDownList" Runat="server" DataSourceID="SqlDataSource2"
DataTextField="ContactTitle" DataValueField="ContactTitle">
</asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource2" Runat="server" SelectCommand="SELECT DISTINCT [ContactTitle] FROM [Customers]"
ConnectionString="server=localhost;uid=sa;password=xxx;database=northwind">
</asp:SqlDataSource>
<asp:Button ID="Button1" Runat="server" Text="Add" OnClick="Button1_Click" />
<asp:Button ID="CancelButton1" Runat="server" Text="Cancel" OnClick="CancelButton1_Click" />
</FooterTemplate>
<ItemTemplate>
<asp:DropDownList ID="ContactTitleDropDown" SelectedValue=’<%# Bind("ContactTitle") %>’ Runat="Server" DataSourceID="SqlDataSource3" DataTextField="ContactTitle" DataValueField="ContactTitle" ></asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource3" Runat="server" SelectCommand="SELECT DISTINCT [ContactTitle] FROM [Customers]"
ConnectionString="server=localhost;uid=sa;password=xxxx;database=northwind" EnableCaching="True">
</asp:SqlDataSource>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:Gridview>
以上为Gridview的代码,可以看到,在第⼀,⼆列的<foottemplate>列中,分别提供了customerid和companyname两个⽂本框以供⽤户输⼊,在第三列的<footertemplate>列中,以dropdownlistbox的形式来显⽰contracttitle.。其中,请注意第三列的footertemplate 中的add和cancel两个按钮的,它们的事件代码如下
<script runat="server">
void CancelButton1_Click(object sender, EventArgs e)
{
Gridview1.ShowFooter = false;
}
void AddButton1_Click(object sender, EventArgs e)
{
Gridview1.ShowFooter = true;
}
//点add按钮时,将新增的记录更新到数据库中去
void Button1_Click(object sender, EventArgs e)
{
TextBox customerID = Gridview1.FooterRow.FindControl("CustomerIDTextBox") as TextBox;
TextBox companyName = Gridview1.FooterRow.FindControl("CompanyNameTextBox") as TextBox;
DropDownList ContactTitle = Gridview1.FooterRow.FindControl("ContactTitleDropDownList") as DropDownList;
SqlDataSource1.InsertParameters["CustomerID"].DefaultValue = customerID.Text;
SqlDataSource1.InsertParameters["CompanyName"].DefaultValue = companyName.Text;
SqlDataSource1.InsertParameters["ContactTitle"].DefaultValue=ContactTitle.SelectedValue;
SqlDataSource1.Insert();
}
</script>
其中的cancel按钮的事件,⽤来取消显⽰Gridview的footer模版,因此设置showfooter属性为false,⽽addbutton1按钮,是当⽤户决定新增记录时点选的,此时将设置showfooter属性为true,以显⽰各列的foottemplate,从⽽达到显⽰新的⼀个空⽩⾏的⽬的。
⽽在更新代码button1_click事件中,将⾸先使⽤Gridview1.footerrow.findcontrol的⽅法,将⽤户新增的各字段的值提取出来,然后分别赋值给sqldatasource的insertparameters集合(注意要⼀⼀对应),最后使⽤sqldatasource的insert⽅法,就可以成功向数据库增加⼀条新记录了。
另外,为了在窗体加载时,显⽰数据库northwind中customers表的数据,需要设置sqldatsource1的属性,如下代码:
<asp:SqlDataSource ID="SqlDataSource1" Runat="server"
InsertCommand="INSERT INTO [Customers] ([CustomerID], [CompanyName], [ContactTitle]) VALUES (@CustomerID,
@CompanyName, @ContactTitle)"
SelectCommand="SELECT top 5 [CustomerID], [CompanyName], [ContactTitle] FROM [Customers]"
ConnectionString="server=localhost;uid=sa;password=XXXXX;database=northwind">
<InsertParameters>
<asp:Parameter Type="String" Name="CustomerID"></asp:Parameter>
<asp:Parameter Type="String" Name="CompanyName"></asp:Parameter>
<asp:Parameter Type="String" Name="ContactTitle"></asp:Parameter>
</InsertParameters>
</asp:SqlDataSource>
其中,必须设置insertcommand和selectcommand属性,设置数据提取和插⼊的语句,并且要设置好insertparameters集合中,各字段的类型和名称即可。
2、⼀次性更新所有的Gridview记录
我们经常会遇到这样的情况,在Gridview中列出的所有记录中,有时要同时修改多条记录,并且将其保存到数据库中去。那么在Gridview中应该如何实现呢?在Gridview中,有两种实现的⽅法,下⾯分别进⾏介绍:
先来看下第⼀种⽅法,本⽅法是使⽤sqldatasource来更新所有记录,但这个⽅法⽐较慢,因为每更新⼀条记录都要建⽴数据连接并执⾏updatecommand,会影响性能。其主要代码如下:
</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="server=localhost;uid=sa;password=xxxx;database=northwind">
<UpdateParameters>
<asp:Parameter Type="String" Name="CompanyName"></asp:Parameter>
gridview不显示<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" />
</div>
</form>
</body>
</html>
在上⾯的代码中,我们必须⾸先指定updateparameters参数集合,也就是指出要更新的是哪些字段,它们的类型是什么。之后并指出sqldatasource的updatecommand语句。⽽在更新按钮button1的CLICK事件中,将以遍历的形式,使⽤for循环,对Gridview中的每⼀⾏进⾏检查,将每个更新了的⽂本框的内容放到sqldatasouce的updateparameters参数中去,最后调⽤sqldatasource的update⽅法,完成更新。
⽅法2使⽤的是⾸先遍历Gridview中的每⼀⾏,并且使⽤SQL语句,将要更新的内容连接起来,然后最后才使⽤
command.ExecuteNonQuery()进⾏更新,效率⾼了,主要代码如下:
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
SqlConnection con = new
SqlConnection(ConfigurationManager.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();
}
}
protected 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(ConfigurationManager.ConnectionStrings["AppConnectionString1"].ConnectionString);
SqlCommand command = new SqlCommand(query.ToString(), con);
con.Open();
command.ExecuteNonQuery();
con.Close();
}
}
其中要特别注意⼀点的是,在VS.NET 2005 beta 2开始,如果你在fig中使⽤了数据库连接字符串的配置,那么应该按如下的⽅法去写:
<connectionStrings>
<add name="NorthwindConnectionString" connectionString="Data Source=LIAO;Initial Catalog=Northwind;User
ID=sa;Password=xxxx" providerName="System.Data.SqlClient"/>
</connectionStrings>
然后在程序中如下进⾏读取:
SqlConnection con = new
SqlConnection(ConfigurationManager.ConnectionStrings["AppConnectionString1"].ConnectionString);
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论