Asp.Net 中的GridView 添加行單擊事件

來源:互聯網
上載者:User

這兩天做OA時用到GridView顯示資料。 為了提高使用者體驗。想寫一個單機行的事件。 結果發現GridView竟然沒有這個事件  只好求助百度大神了。

最終終於找到瞭解決辦法。好了 廢話不多說了。 貼上代碼

首先 在前台設定一個隱藏的ButtonField

<Columns>
<asp:ButtonField Visible="False" Text="SingleClick" CommandName="SingleClick" />
</Columns>

然後在RowDataBound和RowCommand事件裡寫上這些代碼。

 protected void gvRoleInfos_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
LinkButton _singleClickButton = (LinkButton)e.Row.Cells[0].Controls[0];
string _jsSingle = ClientScript.GetPostBackClientHyperlink(_singleClickButton, "");
e.Row.Attributes["onclick"] = _jsSingle;



}
}






protected void gvRoleInfos_RowCommand(object sender, GridViewCommandEventArgs e)
{
GridView _gridview = sender as GridView;
int _selectIndex = int.Parse(e.CommandArgument.ToString());
string _commandName = e.CommandName;
if (_commandName == "SingleClick")
{
_gridview.SelectedIndex = _selectIndex;
}

}

然後在本頁面重寫Render方法

  protected override void Render(HtmlTextWriter writer)
{
foreach (GridViewRow row in gvRoleInfos.Rows)
{
if (row.RowType == DataControlRowType.DataRow)
{
Page.ClientScript.RegisterForEventValidation(row.UniqueID + "$ct100");
Page.ClientScript.RegisterForEventValidation(row.UniqueID + "$ct101");
Page.ClientScript.RegisterForEventValidation(row.UniqueID + "$ct102");
}
}
base.Render(writer);
}

 

原文地址:http://www.cnblogs.com/webabcd/archive/2007/04/22/723113.html

英文地址:http://www.codeproject.com/KB/webforms/EditGridviewCells.aspx

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.