3 implementations of CommandName
System.Web (3)
UI\WebControls\Button.cs (1)
76public string CommandName {
UI\WebControls\ImageButton.cs (1)
60public string CommandName {
UI\WebControls\LinkButton.cs (1)
71public string CommandName {
25 writes to CommandName
System.Web (22)
UI\WebControls\ButtonField.cs (1)
251button.CommandName = CommandName;
UI\WebControls\CommandField.cs (1)
543button.CommandName = commandName;
UI\WebControls\DetailsView.cs (6)
1881firstButton.CommandName = DataControlCommands.PageCommandName; 1900prevButton.CommandName = DataControlCommands.PageCommandName; 1920nextButton.CommandName = DataControlCommands.PageCommandName; 1940lastButton.CommandName = DataControlCommands.PageCommandName; 2009firstButton.CommandName = DataControlCommands.PageCommandName; 2076lastButton.CommandName = DataControlCommands.PageCommandName;
UI\WebControls\FormView.cs (6)
1587firstButton.CommandName = DataControlCommands.PageCommandName; 1604prevButton.CommandName = DataControlCommands.PageCommandName; 1622nextButton.CommandName = DataControlCommands.PageCommandName; 1641lastButton.CommandName = DataControlCommands.PageCommandName; 1707firstButton.CommandName = DataControlCommands.PageCommandName; 1769lastButton.CommandName = DataControlCommands.PageCommandName;
UI\WebControls\GridView.cs (6)
2439firstButton.CommandName = DataControlCommands.PageCommandName; 2460prevButton.CommandName = DataControlCommands.PageCommandName; 2481nextButton.CommandName = DataControlCommands.PageCommandName; 2502lastButton.CommandName = DataControlCommands.PageCommandName; 2571firstButton.CommandName = DataControlCommands.PageCommandName; 2640lastButton.CommandName = DataControlCommands.PageCommandName;
UI\WebControls\Wizard.cs (2)
1444button.CommandName = MoveToCommandName; 2246finishContainer.FinishButton.CommandName = MoveCompleteCommandName;
System.Web.Extensions (3)
UI\WebControls\NextPreviousPagerField.cs (1)
504button.CommandName = commandName;
UI\WebControls\NumericPagerField.cs (2)
334button.CommandName = commandName; 377button.CommandName = commandName;
4 references to CommandName
System.Web (4)
UI\WebControls\DetailsView.cs (1)
3594PostBackOptions options = new PostBackOptions(this, (buttonControl.CommandName + "$" + buttonControl.CommandArgument));
UI\WebControls\FormView.cs (1)
3034PostBackOptions options = new PostBackOptions(this, buttonControl.CommandName + "$" + buttonControl.CommandArgument);
UI\WebControls\GridView.cs (2)
2792if (buttonControl.CommandName == DataControlCommands.SortCommandName) { 4452PostBackOptions options = new PostBackOptions(this, buttonControl.CommandName + "$" + buttonControl.CommandArgument);