九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
ASP.NET中GridView控件ButtonField的使用

  在ASP.NET的GridView控件中使用ButtonField列,通過當(dāng)前行數(shù)據(jù)綁定按鈕的顯示文字,即按鈕的text屬性,以及對應(yīng)的后臺單擊事件。

1.前臺頁面部分代碼  

 1     <asp:GridView runat="server" ID="GridViewBooks" AutoGenerateColumns="false" CellPadding="4" 2                          OnRowCommand="GridView_OnRowCommand" 3                          AllowSorting="true"  > 4                         <Columns > 5                             <asp:BoundField DataField ="ID"  HeaderText="ID" ReadOnly = "true" />  6                             <asp:BoundField DataField="name" HeaderText="書名" ReadOnly ="true" /> 7                             <asp:BoundField DataField="count" HeaderText="數(shù)量" ReadOnly ="true" /> 8                             <asp:BoundField DataField="status" HeaderText="狀態(tài)" ReadOnly ="true" /> 9                             <asp:ButtonField ButtonType="Button" Text="" HeaderText="操作" CommandName="Btn_Operation" />10                         </Columns>11                         <%--... --%>                       12                         </asp:GridView>

在GridView控件中添加ButtonField列,并設(shè)置按鈕類型、(為Button(普通按鈕))、顯示文本(可以不用設(shè)置)、列名、以及傳遞的參數(shù)(這里設(shè)置的是CommandName,用來唯一標(biāo)識列),在GridView屬性中添加OnRowCommand事件。

2.后臺實現(xiàn)

1         protected void GridView_OnRowCommand(object sender, GridViewCommandEventArgs e)2         {3             if (e.CommandName == "Btn_Operation")4             {5                 int index = Convert.ToInt32(e.CommandArgument);6                 //...7 8             }9         }

  這里ButtonField 類自動以適當(dāng)?shù)乃饕堤畛?nbsp;CommandArgument 屬性,即e.CommandArgument值為GirdView當(dāng)前的行號(從0開始);e.Command為列的CommandName屬性。

2015年12月28日11:27:01

本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
asp.net學(xué)習(xí)之GridView七種字段
ASP.NET 2.0輕松實現(xiàn)數(shù)據(jù)庫應(yīng)用開發(fā)
將 ASP.NET UpdatePanel 控件與用戶控件一起使用
GridView 72般絕技
點擊textbox彈出模態(tài)窗口,選擇后返回主頁面并賦值textbox
ASP.NET查詢ACCESS數(shù)據(jù)庫的內(nèi)容并在DATAVIEW中顯示出來
更多類似文章 >>
生活服務(wù)
熱點新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服