GridView的databound事件執行個體(c#)

來源:互聯網
上載者:User

很多新手對GridView的databound事件並不熟悉,今天我就來掩飾一個執行個體,希望對大家有所協助!
這是一個給GridView添加綁定效果的例子,使其每一行加上高亮,並添加跳轉事件。
首先看一下代碼:

 1 protected void gv_TestCombinationList_RowDataBound(object sender, GridViewRowEventArgs e)
 2     {
 3         DataRowView view = e.Row.DataItem as DataRowView;//定義一個DataRowView的執行個體
 4         if (view != null)
 5         {
 6             e.Row.Attributes.Add("onMouseOver", "this.style.color='#ff8105'");
 7             e.Row.Attributes.Add("style", "cursor:hand");
 8             e.Row.Attributes.Add("onMouseOut", "this.style.color='black'");//添加每一行的屬性
 9             for (int i = 0; i < e.Row.Cells.Count; i++)
10             {
11                 string url = rule.GetModulePage(m_ModuleID, ModulePageENUM.TestCombinationDetail) + "?id=" + view["ProjectID"].ToString() + "&testid=" + view["TestID"].ToString();//通過方法得到連結地址
12                 e.Row.Cells[i].Attributes.Add("onclick", "self.location='" + url + "'");//添加跳轉屬性
13             }
14         }
15     }

很簡單的一個小例子,只要你的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.