Implemented interface member:
property
CommandArgument
System.Web.UI.WebControls.IButtonControl.CommandArgument
16 writes to CommandArgument
System.Web (16)
UI\WebControls\Column.cs (1)
332sortButton.CommandArgument = sortExpression;
UI\WebControls\DataControlField.cs (1)
516sortButton.CommandArgument = sortExpression;
UI\WebControls\DataGrid.cs (5)
1317prevButton.CommandArgument = DataGrid.PrevPageCommandArgument; 1333nextButton.CommandArgument = DataGrid.NextPageCommandArgument; 1382button.CommandArgument = (firstPage - 1).ToString(NumberFormatInfo.InvariantInfo); 1402button.CommandArgument = pageString; 1419button.CommandArgument = (lastPage + 1).ToString(NumberFormatInfo.InvariantInfo);
UI\WebControls\DetailsView.cs (3)
2021button.CommandArgument = (firstPage - 1).ToString(NumberFormatInfo.InvariantInfo); 2041button.CommandArgument = pageString; 2054button.CommandArgument = (lastPage + 1).ToString(NumberFormatInfo.InvariantInfo);
UI\WebControls\FormView.cs (3)
1719button.CommandArgument = (firstPage - 1).ToString(NumberFormatInfo.InvariantInfo); 1738button.CommandArgument = pageString; 1750button.CommandArgument = (lastPage + 1).ToString(NumberFormatInfo.InvariantInfo);
UI\WebControls\GridView.cs (3)
2583button.CommandArgument = (firstPage - 1).ToString(NumberFormatInfo.InvariantInfo); 2603button.CommandArgument = pageString; 2617button.CommandArgument = (lastPage + 1).ToString(NumberFormatInfo.InvariantInfo);
2 references to CommandArgument
System.Web (2)
UI\WebControls\LinkButton.cs (2)
62/// <see cref='System.Web.UI.WebControls.LinkButton.Command'/>event along with the associated <see cref='System.Web.UI.WebControls.LinkButton.CommandArgument'/> 435OnCommand(new CommandEventArgs(CommandName, CommandArgument));