2010年6月20日 星期日

GridView如何抓取已經隱藏的欄位值

有很多時候一些欄位不想給使用者看到,但是卻必須利用那些欄位的值作一些判斷,試過了Row.Cells和FindControl都找不到它該怎麼辦勒...以下介紹兩種方式來讓您找到隱藏的欄位值。

此篇由demo分享,因我同事之前也有遇到相同問題,故記錄下來

第一種方式算是比較小技巧的我們再GridView的RowCreated事件中撰寫以下code
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)     
{
if (e.Row.RowType == DataControlRowType.DataRow || e.Row.RowType == DataControlRowType.Header)
e.Row.Cells[0].Visible = false;
}

然後在RowDataBound事件中,一樣可以利用Row.Cells的方式找到它
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)     
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
string aa = e.Row.Cells[0].Text;
}
}

第二種方式看起來就比較有點水準@@
我們是直接使用ui介面把某個欄位隱藏起來(Visible = False),然後直接指定DataItem的方式去找到它,我們需要在RowDataBound事件撰寫以下code
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)     
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
Boolean draft = Convert.ToBoolean(DataBinder.Eval(e.Row.DataItem, "draft"));
if (draft == true)
e.Row.ForeColor = System.Drawing.Color.Green;
}
}

以上的code我是把draftx欄位轉換成布林,然後去判斷是真是假再去對該ROW的字色作變換
轉載自 http://demo.tc/Post/88

沒有留言:

張貼留言