欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Asp.net靜態(tài)方法之Grid轉(zhuǎn)DataTable方法實(shí)現(xiàn)步驟

 更新時(shí)間:2013年04月07日 16:05:16   作者:  
GridView綁定DataTable后,如何獲取GridView綁定后顯示的值,在項(xiàng)目需求的背景下寫了一個(gè)靜態(tài)方法,經(jīng)過(guò)在項(xiàng)目中的使用,bug的修復(fù),較為穩(wěn)定
GridView綁定DataTable后,如何獲取GridView綁定后顯示的值,在項(xiàng)目需求需要的背景下,搜索了獲取單元格顯示文本的方法,然后寫了一個(gè)靜態(tài)方法,經(jīng)過(guò)在項(xiàng)目中的使用,bug的修復(fù),較為穩(wěn)定。

獨(dú)樂(lè)樂(lè)不如眾樂(lè)樂(lè),把代碼貼出來(lái)供大家指正。
復(fù)制代碼 代碼如下:

#region ================GridView轉(zhuǎn)DataTable方法================
/// <summary>GridView轉(zhuǎn)DataTable 版權(quán):求知域http://www.qqextra.com,http://blog.csdn.net/ls_man轉(zhuǎn)載請(qǐng)注明出處</summary>
/// <param name="gv">已綁定數(shù)據(jù)源的GridView</param>
/// <param name="showHideColumn">是否顯示隱藏列</param>
/// <returns>DataTable</returns>
public static DataTable GridViewToDataTable(GridView gv, Boolean showHideColumn)
{
//處理后的數(shù)據(jù)表
DataTable dt = new DataTable();
//記錄符合條件索引
int[] columnIndexs = new int[gv.HeaderRow.Cells.Count];
//記錄指示器從0開(kāi)始
int columnIndexsCount = 0;
//初始化dt列名
for (int i = 0; i < gv.HeaderRow.Cells.Count; i++)
{
//獲取列名
string columnName = GetCellText(gv.HeaderRow.Cells[i]);
//string columnName = gv.HeaderRow.Cells[i].Text;
//列名非空//且可見(jiàn)
if (!string.IsNullOrEmpty(columnName))
{
//是否顯示隱藏列
if (gv.HeaderRow.Cells[i].Visible || showHideColumn)
{
//列名不允許重復(fù)
if (!dt.Columns.Contains(columnName))
{
//dt中新增一列
DataColumn dc = dt.Columns.Add();
//列名
dc.ColumnName = columnName;
//存儲(chǔ)的數(shù)據(jù)類型
dc.DataType = typeof(string);
//記錄符合條件的列索引
columnIndexs[columnIndexsCount] = i;
//記錄指示器+1
columnIndexsCount++;
}
}
}
}//版權(quán):求知域http://www.qqextra.com,http://blog.csdn.net/ls_man轉(zhuǎn)載請(qǐng)注明出處
//GridView行復(fù)制到數(shù)組中便于操作
GridViewRow[] allGridViewRow = new GridViewRow[gv.Rows.Count];
gv.Rows.CopyTo(allGridViewRow, 0);
//數(shù)據(jù)添加到dt中
foreach (GridViewRow row in allGridViewRow)
{
//創(chuàng)建一行
DataRow dr = dt.NewRow();
//符合條件的列
for (int i = 0; i < columnIndexsCount; i++)
{
//獲取顯示文本并保存
dr[i] = GetCellText(row.Cells[columnIndexs[i]]);
}
//dt中增加此行
dt.Rows.Add(dr);
}
//返回處理后的數(shù)據(jù)
return dt;
}
/// <summary>GridView轉(zhuǎn)DataTable 版權(quán):求知域http://www.qqextra.com,http://blog.csdn.net/ls_man轉(zhuǎn)載請(qǐng)注明出處</summary>
/// <param name="gv">未綁定數(shù)據(jù)源的GridView</param>
/// <param name="dtSource">GridView的數(shù)據(jù)源</param>
/// <param name="showHideColumn">是否顯示隱藏列</param>
/// <returns>DataTable</returns>
public static DataTable GridViewToDataTable(GridView gv, DataTable dtSource, Boolean showHideColumn)
{
//綁定原始數(shù)據(jù)到GridView
gv.DataSource = dtSource;
gv.DataBind();
//設(shè)置為不分頁(yè)
gv.AllowPaging = false;<SPAN style="FONT-FAMILY: Arial, Helvetica, sans-serif">//版權(quán):求知域http://www.qqextra.com,http://blog.csdn.net/ls_man轉(zhuǎn)載請(qǐng)注明出處
//GridView轉(zhuǎn)DataTable并返回
return GridViewToDataTable(gv, showHideColumn);
}
#endregion
#region ================私有工具方法================
/// <summary>獲取TableCell的顯示文本 版權(quán):求知域http://www.qqextra.com,http://blog.csdn.net/ls_man轉(zhuǎn)載請(qǐng)注明出處</summary>
/// <param name="cell">TableCell</param>
/// <returns>string</returns>
private static string GetCellText(TableCell cell)
{
string cellText = cell.Text;
//常規(guī)文本(無(wú)控件)直接返回
if (!string.IsNullOrEmpty(cellText))
{
//返回顯示文本
return cellText.Replace("&nbsp;", "");
}
//遍歷cell中的控件
foreach (Control control in cell.Controls)
{
if (control != null && control is IButtonControl)
{
IButtonControl btn = control as IButtonControl;
cellText += btn.Text.Replace("\r\n", "").Trim();
continue;
}版權(quán):求知域http://www.qqextra.com,http://blog.csdn.net/ls_man轉(zhuǎn)載請(qǐng)注明出處
if (control != null && control is ITextControl)
{
LiteralControl lc = control as LiteralControl;
if (lc != null)
{
//跳出到下一步foreach
continue;
}
ITextControl l = control as ITextControl;
cellText += l.Text.Replace("\r\n", "").Trim();
continue;
}
}
//返回顯示文本
return cellText;
}
#endregion
</SPAN>

相關(guān)文章

最新評(píng)論