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