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犯規變化是單擊按鈕時。有任何想法嗎?