Click here to Skip to main content
15,891,316 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to show popup on mouseover of textbox in asp.net
Posted
Comments
Kornfeld Eliyahu Peter 21-Jul-14 1:38am    
How, indeed?

You can use BalloonPopupExtender in Ajax Control ToolKit.

http://www.asp.net/AjaxLibrary/AjaxControlToolkitSampleSite/BalloonPopup/BalloonPopupExtender.aspx[^]

You can change the Style of the Balloon as well

BalloonStyle - Optional setting specifying the theme of balloon popup. (Cloud, Rectangle, Custom). Default value is Rectangle.
 
Share this answer
 
You can make use of JQuery which is as simple as
XML
<script type="text/javascript">
      $(document).ready(function () {
          $("#txtpopup").on("mouseover mouseout", function () {
              $("#test").toggle();
          });
      });
</script>

<asp:TextBox ID="txtpopup" runat="server" ClientIDMode ="static" ></asp:TextBox>
 <div id="test" style="display:none;">This can be designed as popup</div>

Regards..
 
Share this answer
 
Comments
Member 10848796 21-Jul-14 3:39am    
No it is not working.
Thanks7872 21-Jul-14 4:58am    
Its tested and working. Its not working is not at all informative.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900