3 implementations of CommandArgument
System.Web (3)
UI\WebControls\Button.cs (1)
99
public string
CommandArgument
{
UI\WebControls\ImageButton.cs (1)
84
public string
CommandArgument
{
UI\WebControls\LinkButton.cs (1)
95
public string
CommandArgument
{
24 writes to CommandArgument
System.Web (21)
UI\WebControls\ButtonField.cs (1)
252
button.
CommandArgument
= rowIndex.ToString(CultureInfo.InvariantCulture);
UI\WebControls\CommandField.cs (1)
544
button.
CommandArgument
= rowIndex.ToString(CultureInfo.InvariantCulture);
UI\WebControls\DetailsView.cs (6)
1882
firstButton.
CommandArgument
= DataControlCommands.FirstPageCommandArgument;
1901
prevButton.
CommandArgument
= DataControlCommands.PreviousPageCommandArgument;
1921
nextButton.
CommandArgument
= DataControlCommands.NextPageCommandArgument;
1941
lastButton.
CommandArgument
= DataControlCommands.LastPageCommandArgument;
2010
firstButton.
CommandArgument
= DataControlCommands.FirstPageCommandArgument;
2077
lastButton.
CommandArgument
= DataControlCommands.LastPageCommandArgument;
UI\WebControls\FormView.cs (6)
1588
firstButton.
CommandArgument
= DataControlCommands.FirstPageCommandArgument;
1605
prevButton.
CommandArgument
= DataControlCommands.PreviousPageCommandArgument;
1623
nextButton.
CommandArgument
= DataControlCommands.NextPageCommandArgument;
1642
lastButton.
CommandArgument
= DataControlCommands.LastPageCommandArgument;
1708
firstButton.
CommandArgument
= DataControlCommands.FirstPageCommandArgument;
1770
lastButton.
CommandArgument
= DataControlCommands.LastPageCommandArgument;
UI\WebControls\GridView.cs (6)
2440
firstButton.
CommandArgument
= DataControlCommands.FirstPageCommandArgument;
2461
prevButton.
CommandArgument
= DataControlCommands.PreviousPageCommandArgument;
2482
nextButton.
CommandArgument
= DataControlCommands.NextPageCommandArgument;
2503
lastButton.
CommandArgument
= DataControlCommands.LastPageCommandArgument;
2572
firstButton.
CommandArgument
= DataControlCommands.FirstPageCommandArgument;
2641
lastButton.
CommandArgument
= DataControlCommands.LastPageCommandArgument;
UI\WebControls\Wizard.cs (1)
1445
button.
CommandArgument
= index.ToString(NumberFormatInfo.InvariantInfo);
System.Web.Extensions (3)
UI\WebControls\NextPreviousPagerField.cs (1)
505
button.
CommandArgument
= fieldIndex.ToString(CultureInfo.InvariantCulture);
UI\WebControls\NumericPagerField.cs (2)
335
button.
CommandArgument
= commandArgument;
378
button.
CommandArgument
= commandArgument;
4 references to CommandArgument
System.Web (4)
UI\WebControls\DetailsView.cs (1)
3594
PostBackOptions options = new PostBackOptions(this, (buttonControl.CommandName + "$" + buttonControl.
CommandArgument
));
UI\WebControls\FormView.cs (1)
3034
PostBackOptions options = new PostBackOptions(this, buttonControl.CommandName + "$" + buttonControl.
CommandArgument
);
UI\WebControls\GridView.cs (2)
2793
argument = BuildCallbackArgument(buttonControl.
CommandArgument
, SortDirection);
4452
PostBackOptions options = new PostBackOptions(this, buttonControl.CommandName + "$" + buttonControl.
CommandArgument
);