2012-02-28 122 views
0

我有一個ASP .NET項目下面的代碼它有一個GridView用下面的代碼:ASP.NET的按鈕欄命令

  <Columns> 
      <asp:ButtonField ButtonType="Button" CommandName="Sel" Text="Select" /> 
     </Columns> 

,我試圖單擊時引發一個事件。我使用下面的代碼在cs文件:

 protected void grdTimes_RowCommand(Object sender, GridViewCommandEventArgs e) 
    { 
     if (e.CommandName == "Sel") 
     { 
      lblError.Text = "command"; 
     } 
    } 

不幸的是,lblerror.text犯規變化是單擊按鈕時。有任何想法嗎?

回答

0

那麼,在我的情況下它正常工作(我也使用Response.Write)。我會告訴你用Response.Write嘗試,如果它有效,可能是你的標籤設置有誤。

如果你想用你的整個標記編輯你的問題,請隨時做!