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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T21:49:18+00:00 2026-06-03T21:49:18+00:00

In C# ASP.NET I am adding a class to an <input> using: myInput.Attributes.Add(class,myClass); At

  • 0

In C# ASP.NET I am adding a class to an <input> using:

myInput.Attributes.Add("class","myClass");

At some point I would like to remove the added class (not all classes). Is there an equivalent along the lines of:

myInput.Attributes.Remove("class","myClass");

.Remove() seems to only accept a key (no pair value). Thank you!

  • 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-03T21:49:21+00:00Added an answer on June 3, 2026 at 9:49 pm

    There is nothing built in to manage multiple values in the attribute.

    You will have to parse the list, remove the class name and update the attribute.

    Something like (untested):

    var classes = myInput.Attributes["class"].Split(' ');
    
    var updated = classes.Where(x => x != "classtoremove").ToArray();
    
    myInput.Attributes["class"] = string.Join(" ", updated);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

ASP.NET MVC 2 will support validation based on DataAnnotation attributes like this: public class
I'm adding ASP.NET routing to an older webforms app. I'm using a custom HttpHandler
I'm adding some ASP.NET MVC pages to an existing ASP.NET Web Forms project. I've
I would really like use the jQuery Validation plugin in my ASP.NET Web Forms
I am using ASP.NET MVC 2 with nhibernate. I have this Sales class. Sales
I am having some challenges with validation in my ASP.NET MVC3 project when using
When adding a controller in ASP.Net MVC 3 using Controller with Read/Write actions and
When adding the StructureMap-MVC3 package to an ASP.NET MVC application, an IoC class containing
I have an ASP.NET MVC form for adding a module to a site. The
I'm in the process of adding a Data Access Layer for our ASP.Net 2.0

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.