利用sql 表中的標(biāo)識(shí)字段作為鍵碼,該值總是遞增的。
成都創(chuàng)新互聯(lián)主要從事成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)任城,十余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):18980820575
在GRIDVIEW的ROWDATABOUND事件中獲取改標(biāo)識(shí)字段的值,可以得到最新添加的記錄標(biāo)識(shí)
protected void gvsbls_RowDataBound(object sender, GridViewRowEventArgs e)
{
string str1;
int tmpflag = 0;
if (e.Row.RowType == DataControlRowType.DataRow)
{//空記錄時(shí)不能設(shè)置
Button btnHiddenPostButton2 = e.Row.FindControl("btn2") as Button;
if (btnHiddenPostButton2 != null)
{
str1 = btnHiddenPostButton2.ClientID;
e.Row.Attributes[" = String.Format("javascript:document.getElementById('{0}').click()", btnHiddenPostButton2.ClientID);
// 額外樣式定義
e.Row.Attributes[" = "javascript:this.style.background='yellow'";
e.Row.Attributes[" = "javascript:this.style.background=''";
e.Row.Attributes["style"] = "cursor:pointer";
e.Row.Attributes["title"] = "單擊當(dāng)前記錄可查看批復(fù)結(jié)果";
tmpflag = Convert.ToInt16(e.Row.Cells[11].Text);
if (tmpflag > maxflag) maxflag = tmpflag;
}
// 若希望將隱藏按鈕單獨(dú)放于一列,則設(shè)置此列隱藏,占位符
}