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 8876707
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T19:16:35+00:00 2026-06-14T19:16:35+00:00

I have a Repeater Control with various buttons in it. When the button gets

  • 0

I have a Repeater Control with various buttons in it.

When the button gets clicked, it needs to disable itself so it cant be clicked again. Working.

However, when I click that button, it needs to enable any other button but it.

So, When I click on it, it needs to disable. When I click on another one, the previous button must enable, and that one must disable.

So for I’ve tried:

Button btnLoad = (Button)e.Item.FindControl("btnLoad");

foreach (Button b in e.Item.Controls.OfType<Button>().Select(c => c).Where(b => b != btnLoad))
{
   b.Enabled = true;
}

btnLoad.Text = "Currently Viewing";
btnLoad.Enabled = false;

But it isnt working. Depending on where I put it, its either leaving all the buttons enabled (But still changing its text), or not doing anything at all.

What do I need to do to make this work?

Edit: The code is found here:

protected void rptPdfList_ItemCommand(object source, RepeaterCommandEventArgs e)

Which is why I use Button btnLoad = (Button)e.Item.FindControl("btnLoad");.

The method is found in :

switch (e.CommandName)
        {
            case "LoadDoc":
                 //Above code
               break;
        }
  • 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-06-14T19:16:36+00:00Added an answer on June 14, 2026 at 7:16 pm

    Assuming you want that code in the Button‘s Click-event handler:

    protected void Button_Clicked(Object sender, EventArgs e)
    {
        Button thisButton = (Button) sender;
        thisButton.Text = "Currently Viewing";
        RepeaterItem item = (RepeaterItem) thisButton.NamingContainer;
        IEnumerable<Button> buttons = item.Controls.OfType<Button>();
        foreach(var btn in buttons)
        {
            btn.Enabled = btn != thisButton;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Repeater control that outputs various forum posts on the page. Within
I have an XML DataSource which feeds a repeater control. However, I'm having some
I have a repeater control that houses several RadioButtonLists with various RadioButtons in each
I have Repeater control like this; <asp:Repeater ID=repeaterCategoryList runat=server onitemcommand=repeaterCategoryList_ItemCommand> <ItemTemplate> <td class=center> <asp:Button
I have a repeater control, and inside it I have two radio buttons selecting
I have a repeater control and some controls like dropdown/Buttons/Checklist for search as all
In my webform I have a repeater control. I have a button to open
I have Repeater Control and in that i have code like this <div runat=server
I have Repeater Control as shown below. <asp:Repeater ID=rptCategory runat=server> <HeaderTemplate> <h2 class=art-logo-text style=margin-bottom:
I have a repeater control that contains an ItemTemplate containing a databound label and

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.