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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:41:28+00:00 2026-05-26T02:41:28+00:00

In asp.net, when the user mouses over a button, I’d like to change the

  • 0

In asp.net, when the user mouses over a button, I’d like to change the text of a label to explain what the button does.

Then when they mouse-out of the button, the label should go back to its default text.

What is the best way to achieve this? Are there ASP.net controls for this? Or should I just code custom javascript?

  • 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-26T02:41:29+00:00Added an answer on May 26, 2026 at 2:41 am

    Changing the label text using a little jQuery magic is really quite easy.

    Here’s what you’d use for your label

    <label id="mylabel" 
           title="My Text" 
           data-replace="My NEW Text">My Text</label>
    

    and here’s what you’d use for your jQuery

    $("#mylabel").mouseover(function () {
      $(this).text($(this).data('replace'));
    });
    
    
    $("#mylabel").mouseout(function () {
      $(this).text($(this).attr('title'));
    });
    

    You can test it here.

    Also, if you’re using web forms, you can either add the data attribute in your code behind or directly in the control. Doing it in the code behind is good for dynamic text.

    mylabel.Attributes.Add("data-original", "My Text");
    mylabel.Attributes.Add("data-replace", "My NEW Text");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an ASP.NET user control that contains a text box control and a
I would like to create the ASP.NET User database template on a database of
I would like to use jQuery in ASP.NET User Control. Can some one tell
I have an ASP.NET user control with a button, and I want to add
I would like to expose a complex property from a custom ASP.NET user control,
I am working on a asp.net web site, like normal user, we use asp.net
Distributing ASP.NET user controls across different projects can be really useful when you want
I have a ASP.NET user control which hosts a 'HtmlImage'. The src attribute is
I have an ASP.NET user control (.ascx file). In this user control I want
I have an asp.net user control on which I want to use jquery ajax.

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.