ASP.NET2.0中Gridview中資料操作技巧

來源:互聯網
上載者:User
asp.net|技巧|資料     Asp.net 2.0中新增的gridview控制項,是十分強大的資料展示控制項,在前面的系列文章裡,分別展示了其中很多的基本用法和技巧(詳見<<ASP.NET 2.0中Gridview控制項進階技巧>>、<<ASP.NET2.0利用Gridview實現主從關係>>)。在本文中,將繼續探討有關的技巧。

   一、Gridview中的內容匯出到Excel

  在日常工作中,經常要將gridview中的內容匯出到excel報表中去,在asp.net 2.0中,同樣可以很方便地實現將整個gridview中的內容匯出到excel報表中去,下面介紹其具體做法:

  首先,建立基本的頁面default.aspx

<form id="form1" runat="server">
<div>
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
</div>
<br/>
<asp:Button ID="BtnExport" runat="server"
Text="Export to Excel" />
</form>
  在default.aspx.cs中,寫入如下代碼:

protected void Page_Load(object sender, EventArgs e)
{
 if (!Page.IsPostBack)
 {
  BindData();
 }
}
private void BindData()
{
 string query = "SELECT * FROM customers";
 SqlConnection myConnection = new SqlConnection(ConnectionString);
 SqlDataAdapter ad = new SqlDataAdapter(query, myConnection);
 DataSet ds = new DataSet();
 ad.Fill(ds, "customers");
 GridView1.DataSource = ds;
 GridView1.DataBind();
}

public override void VerifyRenderingInServerForm(Control control)
{
 // Confirms that an HtmlForm control is rendered for
}

protected void Button1_Click(object sender, EventArgs e)
{
 Response.Clear();
 Response.AddHeader("content-disposition","attachment;filename=FileName.xls");
 Response.Charset = "gb2312";
 Response.ContentType = "application/vnd.xls";
 System.IO.StringWriter stringWrite = new System.IO.StringWriter();
 System.Web.UI.HtmlTextWriter htmlWrite =new HtmlTextWriter(stringWrite);

 GridView1.AllowPaging = false;
 BindData();
 GridView1.RenderControl(htmlWrite);

 Response.Write(stringWrite.ToString());
 Response.End();
 GridView1.AllowPaging = true;
 BindData();
}
protected void paging(object sender,GridViewPageEventArgs e)
{
 GridView1.PageIndex = e.NewPageIndex;
 BindData();
}
  在上面的代碼中,我們首先將gridview綁定到指定的資料來源中,然後在button1的按鈕(用來做匯出到EXCEL的)的事件中,寫入相關的代碼。這裡使用Response.AddHeader("content-disposition","attachment;filename=exporttoexcel.xls");中的filename來指定將要匯出的excel的檔案名稱,這裡是exporttoexcel.xls。要注意的是,由於gridview的內容可能是分頁顯示的,因此,這裡在每次匯出excel時,先將gridview的allowpaging屬性設定為false,然後通過頁面流的方式匯出當前頁的gridview到excel中,最後再重新設定其allowpaging屬性。另外要注意的是,要寫一個空的VerifyRenderingInServerForm方法(必須寫),以確認在運行時為指定的ASP.NET 伺服器控制項呈現HtmlForm 控制項。

   二、訪問gridview中的各類控制項

  在gridview中,經常要訪問其中的各類控制項,比如dropdownlist,radiobutton,checkbox等,下面歸納下在gridview中訪問各類控制項的方法。

  首先看下如何在gridview中訪問dropdownlist控制項。假設在一個gridviw中,展現的每條記錄中都需要供使用者用下拉選擇的方式選擇dropdownlist控制項中的內容,則可以使用如下代碼,當使用者選擇好gridview中的dropdownlist控制項的選項後,點擊按鈕,則系統列印出使用者到底選擇了哪些dropdownlist控制項,並輸出它們的值。

public DataSet PopulateDropDownList()
{
 SqlConnection myConnection =new SqlConnection(ConfigurationManager.ConnectionStrings["MyDatabase"].ConnectionString);
 SqlDataAdapter ad = new SqlDataAdapter("SELECT * FROM tblPhone", myConnection);
 DataSet ds = new DataSet();
 ad.Fill(ds, "tblPhone");
 return ds;
}
  上面的代碼首先將資料庫中tblphone表的資料以dataset的形式返回。然後在頁面的itemtemplate中,如下設計:

<ItemTemplate>
<asp:DropDownList ID="DropDownList1" runat="server" DataSource="<%# PopulateDropDownList() %>"
DataTextField="Phone" DataValueField = "PhoneID">
</asp:DropDownList>
</ItemTemplate>
  這裡注意dropdownlist控制項的datasource屬性綁定了剛才返回的dataset(調用了populatedropdownlist()方法),並要注意設定好datatextfield和datavaluefield屬性。

  然後,在button的事件中,寫入以下代碼:

protected void Button2_Click(object sender, EventArgs e)
{
 StringBuilder str = new StringBuilder();
 foreach (GridViewRow gvr in GridView1.Rows)
 {
  string selectedText = ((DropDownList)gvr.FindControl("DropDownList1")).SelectedItem.Text;
  str.Append(selectedText);
 }
 Response.Write(str.ToString());
}
  這裡,我們用迴圈,來獲得每一行的dropdownlist控制項的值,並且將值添加到字串中最後輸出。

  接著,我們來看下如何訪問gridview控制項中的checkbox控制項。經常在gridview控制項中,需要給使用者多項選擇的功能,這個時候就需要使用checkbox控制項。首先我們建立一個模版列,其中有checkbox如下:

<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="False" DataKeyNames="PersonID" DataSourceID="mySource" Width="366px" CellPadding="4" ForeColor="#333333" GridLines="None">
<Columns>
<asp:CommandField ShowSelectButton="True" />
<asp:BoundField DataField="PersonID" HeaderText="PersonID" InsertVisible="False"
ReadOnly="True" SortExpression="PersonID" />
<asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" />
<asp:TemplateField HeaderText="Select">
<ItemTemplate>
<asp:CheckBox ID="chkSelect" runat="server" />
</ItemTemplate>
<HeaderTemplate>
</HeaderTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
  為了示意性地講解如何得到使用者選擇的checkbox,可以增加一個按鈕,當使用者選擇gridview中的選項後,點該按鈕,則可以輸出使用者選了哪些選項,在按鈕的CLICK事件中寫入如下代碼:

for (int i = 0; i < GridView1.Rows.Count; i++)
{
 GridViewRow row = GridView1.Rows[i];
 bool isChecked = ((CheckBox) row.FindControl("chkSelect")).Checked;
 if (isChecked)
 {
  str.Append(GridView1.Rows[i].Cells[2].Text);
 }
}
Response.Write(str.ToString());
  接下來,我們添加一個全選的選擇框,當使用者選擇該框時,可以全部選擇gridview中的checkbox.首先我們在headtemplate中如下設計:

<HeaderTemplate>
<input id="chkAll" runat="server" type="checkbox" />
</HeaderTemplate>
  javascript部分的代碼如下所示:

<script language=javascript>
function SelectAllCheckboxes(spanChk){
 var oItem = spanChk.children;
 var theBox=(spanChk.type=="checkbox")?spanChk:spanChk.children.item[0];
 xState=theBox.checked;
 elm=theBox.form.elements;
 for(i=0;i<elm.length;i++)
 if(elm[i].type=="checkbox" && elm[i].id!=theBox.id)
 {
  if(elm[i].checked!=xState)
  elm[i].click();
 }
}
</script>   三、gridview中刪除記錄的處理

  在gridview中,我們都希望能在刪除記錄時,能彈出提示框予以提示,在asp.net 1.1中,都可以很容易實現,那麼在asp.net 2.0中要如何?呢?下面舉例子說明,首先在HTML頁面中設計好如下代碼:

<asp:GridView DataKeyNames="CategoryID" ID="GridView1" runat="server" AutoGenerateColumns="False" OnRowCommand="GridView1_RowCommand" OnRowDataBound="GridView1_RowDataBound" OnRowDeleted="GridView1_RowDeleted" OnRowDeleting="GridView1_RowDeleting">
<Columns>
<asp:BoundField DataField="CategoryID" HeaderText="CategoryID" />
<asp:BoundField DataField="CategoryName" HeaderText="CategoryName" />
<asp:TemplateField HeaderText="Select">
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" CommandArgument='<%# Eval("CategoryID") %>' CommandName="Delete" runat="server">Delete</asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
  在上面的代碼中,我們設定了一個連結linkbutton,其中指定了commandname為"Delete",commandargument為要刪除的記錄的ID編號,注意一旦commandname設定為delete這個名稱後,gridview中的GridView_RowCommand 和 GridView_Row_Deleting 事件都會被激發接者,我們處理其rowdatabound事件中:

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
 if (e.Row.RowType == DataControlRowType.DataRow)
 {
  LinkButton l = (LinkButton)e.Row.FindControl("LinkButton1");
  l.Attributes.Add('onclick", "javascript:return " + "confirm("是否要刪除該記錄? " +
  DataBinder.Eval(e.Row.DataItem, "id") + "')");
 }
}
  在這段代碼中,首先檢查是否是datarow,是的話則得到每個linkbutton,再為其添加用戶端代碼,基本和asp.net 1.1的做法差不多。

  之後,當使用者選擇了確認刪除後,我們有兩種方法對其進行繼續的後續刪除處理,因為我們將刪除按鈕設定為Delete,方法一是在row_command事件中寫入如下代碼:

protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
 if (e.CommandName == "Delete")
 {
  int id = Convert.ToInt32(e.CommandArgument);
  // 刪除記錄的專門過程
  DeleteRecordByID(id);
 }
}
  另外一種方法是使用gridview的row_deletting事件,先在頁面HTML代碼中,添加<asp:GridView DataKeyNames="CategoryID" ID="GridView1" runat="server" AutoGenerateColumns="False" OnRowCommand="GridView1_RowCommand" OnRowDataBound="GridView1_RowDataBound" onRowDeleting="GridView1_RowDeleting">
然後添加row_deleting事件:

protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
 int categoryID = (int) GridView1.DataKeys[e.RowIndex].Value;
 DeleteRecordByID(categoryID);
}
  要注意的是,這個必須將datakeynames設定為要刪除記錄的編號,這裡是categoryid.

   小結

  在本文中,繼續探討了gridview控制項的一些用法,如匯出到excel,在刪除記錄時的處理,以及如何訪問gridview中的控制項等。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.