主頁(yè) > 知識(shí)庫(kù) > ASP.NET2.0中用Gridview控件操作數(shù)據(jù)的代碼

ASP.NET2.0中用Gridview控件操作數(shù)據(jù)的代碼

熱門標(biāo)簽:上海楊浦怎么申請(qǐng)申請(qǐng)400電話 海外地圖標(biāo)注門市標(biāo) 地圖標(biāo)注多個(gè)行程 山西防封卡電銷卡套餐 云南外呼電銷機(jī)器人系統(tǒng) 陜西人工外呼系統(tǒng)哪家好 廈門商鋪地圖標(biāo)注 浙江外呼系統(tǒng)怎么安裝 銅川小型外呼系統(tǒng)運(yùn)營(yíng)商
其中,在數(shù)據(jù)控件方面,增加了不少控件,其中的Gridview控件功能十分強(qiáng)大。在本文中,將探討Gridview控件中的一些功能特性和用法,如果各位讀者對(duì)Gridview控件不大了解,可以通過(guò)《使用ASP.NET 2.0中的Gridview控件》一文,來(lái)對(duì)Gridview控件有個(gè)初步的認(rèn)識(shí)。

  1、使用Gridview插入新記錄

  在Gridview控件中,可以實(shí)現(xiàn)插入新記錄的操作(見《使用ASP.NET 2.0中的Gridview控件》)一文,但如果想實(shí)現(xiàn)在Gridview中,實(shí)現(xiàn)在Gridview控件的最后一行,提供一個(gè)空白行給用戶輸入要輸入的記錄,那無(wú)疑是很方便的。下面將介紹其實(shí)現(xiàn)方法。
  首先,我們打算在讓用戶進(jìn)行選擇,當(dāng)用戶需要新增一記錄時(shí),便點(diǎn)擊新增按鈕,之后在Gridview的最后一行里,顯示一個(gè)空白行,讓用戶按字段進(jìn)行輸入,如下圖所示:
  
   
 當(dāng)用戶決定不輸入新空白記錄時(shí),可以按"cancel"按鈕返回,該空白行消失。要實(shí)現(xiàn)這樣的效果,我們可以充分利用Gridview的footer的模版功能進(jìn)行自定義,因?yàn)橛?列,所以,在每一列的footer模版中,定義如下:
復(fù)制代碼 代碼如下:

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兩個(gè)文本框以供用戶輸入,在第三列的footertemplate>列中,以dropdownlistbox的形式來(lái)顯示contracttitle.。其中,請(qǐng)注意第三列的footertemplate中的add和cancel兩個(gè)按鈕的,它們的事件代碼如下
復(fù)制代碼 代碼如下:

script runat="server">
void CancelButton1_Click(object sender, EventArgs e)
{
 Gridview1.ShowFooter = false;
}
void AddButton1_Click(object sender, EventArgs e)
{
 Gridview1.ShowFooter = true;
}
 //點(diǎn)add按鈕時(shí),將新增的記錄更新到數(shù)據(jù)庫(kù)中去
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按鈕的事件,用來(lái)取消顯示Gridview的footer模版,因此設(shè)置showfooter屬性為false,而addbutton1按鈕,是當(dāng)用戶決定新增記錄時(shí)點(diǎn)選的,此時(shí)將設(shè)置showfooter屬性為true,以顯示各列的foottemplate,從而達(dá)到顯示新的一個(gè)空白行的目的。

  而在更新代碼button1_click事件中,將首先使用Gridview1.footerrow.findcontrol的方法,將用戶新增的各字段的值提取出來(lái),然后分別賦值給sqldatasource的insertparameters集合(注意要一一對(duì)應(yīng)),最后使用sqldatasource的insert方法,就可以成功向數(shù)據(jù)庫(kù)增加一條新記錄了。

  另外,為了在窗體加載時(shí),顯示數(shù)據(jù)庫(kù)northwind中customers表的數(shù)據(jù),需要設(shè)置sqldatsource1的屬性,如下代碼:

復(fù)制代碼 代碼如下:

 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>

  其中,必須設(shè)置insertcommand和selectcommand屬性,設(shè)置數(shù)據(jù)提取和插入的語(yǔ)句,并且要設(shè)置好insertparameters集合中,各字段的類型和名稱即可。

  2、一次性更新所有的Gridview記錄

  我們經(jīng)常會(huì)遇到這樣的情況,在Gridview中列出的所有記錄中,有時(shí)要同時(shí)修改多條記錄,并且將其保存到數(shù)據(jù)庫(kù)中去。那么在Gridview中應(yīng)該如何實(shí)現(xiàn)呢?在Gridview中,有兩種實(shí)現(xiàn)的方法,下面分別進(jìn)行介紹:

  先來(lái)看下第一種方法,本方法是使用sqldatasource來(lái)更新所有記錄,但這個(gè)方法比較慢,因?yàn)槊扛乱粭l記錄都要建立數(shù)據(jù)連接并執(zhí)行updatecommand,會(huì)影響性能。其主要代碼如下:

復(fù)制代碼 代碼如下:

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 id="Head1" 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="server=localhost;uid=sa;password=xxxx;database=northwind">
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" />
/div>
/form>
/body>
/html>

  在上面的代碼中,我們必須首先指定updateparameters參數(shù)集合,也就是指出要更新的是哪些字段,它們的類型是什么。之后并指出sqldatasource的updatecommand語(yǔ)句。而在更新按鈕button1的CLICK事件中,將以遍歷的形式,使用for循環(huán),對(duì)Gridview中的每一行進(jìn)行檢查,將每個(gè)更新了的文本框的內(nèi)容放到sqldatasouce的updateparameters參數(shù)中去,最后調(diào)用sqldatasource的update方法,完成更新。

  方法2使用的是首先遍歷Gridview中的每一行,并且使用SQL語(yǔ)句,將要更新的內(nèi)容連接起來(lái),然后最后才使用command.ExecuteNonQuery()進(jìn)行更新,效率高了,主要代碼如下:

復(fù)制代碼 代碼如下:

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();
}
}

  其中要特別注意一點(diǎn)的是,在vs.net 2005 beta 2開始,如果你在web.config中使用了數(shù)據(jù)庫(kù)連接字符串的配置,那么應(yīng)該按如下的方法去寫:
復(fù)制代碼 代碼如下:

connectionStrings>
add name="NorthwindConnectionString" connectionString="Data Source=LIAO;Initial Catalog=Northwind;User ID=sa;Password=xxxx" providerName="System.Data.SqlClient"/>
/connectionStrings>

  然后在程序中如下進(jìn)行讀?。?
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["AppConnectionString1"].ConnectionString);
您可能感興趣的文章:
  • ASP.NET 2.0/3.5中直接操作Gridview控件插入新記錄
  • asp.net GridView控件鼠標(biāo)移動(dòng)某行改變背景顏色(方法一)
  • asp.net GridView控件中模板列CheckBox全選、反選、取消
  • asp.net GridView控件中實(shí)現(xiàn)全選的解決方案
  • ASP.NET GridView控件在列上格式化時(shí)間及DataFormatString使用
  • asp.net的GridView控件使用方法大全
  • asp.net中GridView控件遍歷的小例子
  • Asp.net的GridView控件實(shí)現(xiàn)單元格可編輯方便用戶使用
  • ASP.NET4 GridView的四種排序樣式詳解
  • ASP.NET使用GridView導(dǎo)出Excel實(shí)現(xiàn)方法
  • asp.net gridview分頁(yè):第一頁(yè) 下一頁(yè) 1 2 3 4 上一頁(yè) 最末頁(yè)
  • ASP.NET中為GridView添加刪除提示框的方法
  • asp.net中GridView數(shù)據(jù)鼠標(biāo)移入顯示提示信息
  • 如何用jQuery實(shí)現(xiàn)ASP.NET GridView折疊伸展效果
  • ASP.NET GridView中加入RadioButton不能單選的解決方案
  • 靈活掌握asp.net中g(shù)ridview控件的多種使用方法(上)
  • 靈活掌握asp.net中g(shù)ridview控件的多種使用方法(下)

標(biāo)簽:西雙版納 孝感 自貢 朔州 萊蕪 許昌 常州 信陽(yáng)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ASP.NET2.0中用Gridview控件操作數(shù)據(jù)的代碼》,本文關(guān)鍵詞  ASP.NET2.0,中用,Gridview,控件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ASP.NET2.0中用Gridview控件操作數(shù)據(jù)的代碼》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于ASP.NET2.0中用Gridview控件操作數(shù)據(jù)的代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章