Which event fires when selecting an Item in ASP.NET DetailView?
I have put a select but开发者_运维百科ton in my DetailView and I want to catch its event, but I can't seem to find it.
ItemCommand
will be fired
protected void DetailsView1_ItemCommand(object sender, DetailsViewCommandEventArgs e)
{
}
精彩评论