28 references to CommandName
System.Web (20)
UI\WebControls\ChangePassword.cs (3)
1914if (ce.CommandName.Equals(ChangePasswordButtonCommandName, StringComparison.CurrentCultureIgnoreCase)) { 1918else if (ce.CommandName.Equals(CancelButtonCommandName, StringComparison.CurrentCultureIgnoreCase)) { 1922else if (ce.CommandName.Equals(ContinueButtonCommandName, StringComparison.CurrentCultureIgnoreCase)) {
UI\WebControls\CommandEventArgs.cs (1)
26public CommandEventArgs(CommandEventArgs e) : this(e.CommandName, e.CommandArgument) {
UI\WebControls\CreateUserWizard.cs (1)
2673if (ce.CommandName.Equals(ContinueButtonCommandName, StringComparison.CurrentCultureIgnoreCase)) {
UI\WebControls\DataGrid.cs (1)
1492string command = dce.CommandName;
UI\WebControls\DataList.cs (1)
1104string command = dce.CommandName;
UI\WebControls\DetailsView.cs (1)
2404string command = dce.CommandName;
UI\WebControls\FormView.cs (1)
2034string command = dce.CommandName;
UI\WebControls\GridView.cs (1)
2987string command = dce.CommandName;
UI\WebControls\login.cs (1)
1293if (String.Equals(ce.CommandName, LoginButtonCommandName, StringComparison.OrdinalIgnoreCase)) {
UI\WebControls\Menu.cs (1)
2166if (me != null && StringUtil.EqualsIgnoreCase(me.CommandName, MenuItemClickCommandName)) {
UI\WebControls\MultiView.cs (1)
263string cn = ce.CommandName;
UI\WebControls\PasswordRecovery.cs (1)
1496if (ce.CommandName.Equals(SubmitButtonCommandName, StringComparison.CurrentCultureIgnoreCase)) {
UI\WebControls\Wizard.cs (6)
1456if (!MoveToCommandName.Equals(e.CommandName, StringComparison.OrdinalIgnoreCase)) { 1738if (String.Equals(CancelCommandName, ce.CommandName, StringComparison.OrdinalIgnoreCase)) { 1769if (String.Equals(MoveNextCommandName, ce.CommandName, StringComparison.OrdinalIgnoreCase)) { 1782} else if (String.Equals(MovePreviousCommandName, ce.CommandName, StringComparison.OrdinalIgnoreCase)) { 1798} else if (String.Equals(MoveCompleteCommandName, ce.CommandName, StringComparison.OrdinalIgnoreCase)) { 1811} else if (String.Equals(MoveToCommandName, ce.CommandName, StringComparison.OrdinalIgnoreCase)) {
System.Web.Extensions (8)
UI\WebControls\ListView.cs (1)
2296string command = dce.CommandName;
UI\WebControls\NextPreviousPagerField.cs (4)
439if (String.Equals(e.CommandName, DataControlCommands.PreviousPageCommandArgument)) { 447else if (String.Equals(e.CommandName, DataControlCommands.NextPageCommandArgument)) { 455else if (String.Equals(e.CommandName, DataControlCommands.FirstPageCommandArgument)) { 458else if (String.Equals(e.CommandName, DataControlCommands.LastPageCommandArgument)) {
UI\WebControls\NumericPagerField.cs (3)
296if (String.Equals(e.CommandName, DataControlCommands.PreviousPageCommandArgument)) { 302else if (String.Equals(e.CommandName, DataControlCommands.NextPageCommandArgument)) { 309int pageIndex = Convert.ToInt32(e.CommandName, CultureInfo.InvariantCulture);