Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1021819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T11:22:10+00:00 2026-05-16T11:22:10+00:00

I have a list of methods I wish to call and a button accompaning

  • 0

I have a list of methods I wish to call and a button accompaning each and a generic method to handle the buttons.

Using the commandArgument how can I run the selected method.

E.g. Click run method1 button. In handler for button click call the method as named in commandArgument

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T11:22:10+00:00Added an answer on May 16, 2026 at 11:22 am

    So the string in the CommandArgument matches the name of a method? If you must do this then you could use reflection. I’m assuming you’ve basically got a single button click event for each button or you wouldn’t be asking this:

    private void MethodA() { }
    
    protected void Button_Click(object sender, EventArgs e)
    {
        string arg = ((Button)sender).CommandArgument;  // = MethodA
        MethodInfo method = this.GetType().GetMethod(arg);
        method.Invoke(this, null);
    }
    

    Although this looks like a massive code smell. Why do you have to do it this way? Why can you not just give each button a separate event handler and call each method directly?

    Alternatively, why not use a switch statement on the argument:

    protected void Button_Click(object sender, EventArgs e)
    {
        string arg = ((Button)sender).CommandArgument;  // = MethodA
        switch (arg)
        {
            case "MethodA":
                MethodA(); break;
            case "MethodB":
                MethodB(); break;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a list of methods that I want to call named Method1, Method2,
I'm developing a Sudoku solver using human methods. I have a list of strategies
Using the method from Steve Sanderson's blog , I have a list of items
I have dropdown list using select_tag and I have button near it. I have
I have a search method that takes a list of ID's and I wish
I have a list of people with Person objects with getName() and getYearOfBirth() methods.
Why do argument list in some methods end with nil ? I have noticed
I have a list of System.DirectoryServices.ActiveDirectory.Domain objects gotten via this method. How do I
I have 5 list items, when one is clicked the only method I know
I have the following code which utilises Guava's Files.readLines() method: List<String> strings = Lists.newArrayList();

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.