Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. how to get on mouse over message in .aspx page

how to get on mouse over message in .aspx page

Scheduled Pinned Locked Moved ASP.NET
adobehelptutorial
4 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    somasekhara777
    wrote on last edited by
    #1

    hi friends i need help for, if i put a mouse on a link button then that is show our message of content what we have. how can we will get on mouse overa text message is it possible in link button or anything else. Or that is only possible in flash buttons. thank you please give me a rep

    j somasekhar

    T 1 Reply Last reply
    0
    • S somasekhara777

      hi friends i need help for, if i put a mouse on a link button then that is show our message of content what we have. how can we will get on mouse overa text message is it possible in link button or anything else. Or that is only possible in flash buttons. thank you please give me a rep

      j somasekhar

      T Offline
      T Offline
      ToddHileHoffer
      wrote on last edited by
      #2

      Write javascript for onMouseOver event. Most elements have this event in javascript.

      Put the following C# code in page_load to add the even in HTML.

              LinkButton.Attributes.Add("onMouseOver", "mouseOver('" +  LinkButton.ClientID + "');");
      

      Add the following javascript to your mark up
      function mouseOver(btnId) {
      var LinkButton = document.getElementById(btnId);
      //put javascript to show message

          }
      
          function mouseOut(btnId) {
              var LinkButton = document.getElementById(btnId);
                //put javascript to hide message
          }
      

      I didn't get any requirements for the signature

      S 2 Replies Last reply
      0
      • T ToddHileHoffer

        Write javascript for onMouseOver event. Most elements have this event in javascript.

        Put the following C# code in page_load to add the even in HTML.

                LinkButton.Attributes.Add("onMouseOver", "mouseOver('" +  LinkButton.ClientID + "');");
        

        Add the following javascript to your mark up
        function mouseOver(btnId) {
        var LinkButton = document.getElementById(btnId);
        //put javascript to show message

            }
        
            function mouseOut(btnId) {
                var LinkButton = document.getElementById(btnId);
                  //put javascript to hide message
            }
        

        I didn't get any requirements for the signature

        S Offline
        S Offline
        somasekhara777
        wrote on last edited by
        #3

        on mouse over message in .aspx page. thank you

        j somasekhar

        1 Reply Last reply
        0
        • T ToddHileHoffer

          Write javascript for onMouseOver event. Most elements have this event in javascript.

          Put the following C# code in page_load to add the even in HTML.

                  LinkButton.Attributes.Add("onMouseOver", "mouseOver('" +  LinkButton.ClientID + "');");
          

          Add the following javascript to your mark up
          function mouseOver(btnId) {
          var LinkButton = document.getElementById(btnId);
          //put javascript to show message

              }
          
              function mouseOut(btnId) {
                  var LinkButton = document.getElementById(btnId);
                    //put javascript to hide message
              }
          

          I didn't get any requirements for the signature

          S Offline
          S Offline
          somasekhara777
          wrote on last edited by
          #4

          hi dear. can u help me. plz give me any sample application if u have, plz send it to me by somasekhara777@yahoo.co.in

          j somasekhar

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups