What you want to see on DotNetFunda.com ?
DotNetFunda.Com Logo
Twitter TwitterLinkedIn
YouTubeGoogle
 Online : 13374 |  Welcome, Guest!   Register  Login
 Home > Code Snippets > ASP.NET AJAX > How to use AJAX Hover Menu Extender as tool tip ? ...
Ranjeet_8

How to use AJAX Hover Menu Extender as tool tip ?

 Code Snippet posted by: Ranjeet_8 | Posted on: 1/1/2013 | Category: ASP.NET AJAX Codes | Views: 620 | Status: [Member] | Points: 40 | Alert Moderator   


use AJAX Hover Menu Extender as tool tip.

<%-- ADD/REPLACE YOUR AJAX ASSEMBLY HERE --%>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Testing page</title>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<br />
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><br />
<br />
<cc1:HoverMenuExtender ID="HoverMenuExtender1" runat="server" TargetControlID="TextBox1"
PopupControlID="Panel1" PopupPosition="Right">
</cc1:HoverMenuExtender>
<asp:Panel ID="Panel1" runat="server" Style="height: 25px; width: 160px; background-color: #D9D9D9;
border: 1px solid #000000; display: none; text-align: center;">
Enter your first name.
</asp:Panel>
<br />
Move your mouse on text area.
</form>
</body>
</html>

Found interesting? Add this to:


>> Write Response - Respond to this post and get points

More codes snippets

About Us | Contact Us | The Team | Advertise | Software Development | Write for us | Testimonials | Privacy Policy | Terms of Use | Link Exchange | Members | Go Top
General Notice: If you find plagiarised (copied) contents on this page, please let us know the original source along with your correct email id (to communicate) for further action.
Copyright © DotNetFunda.Com. All Rights Reserved. Copying or mimicking the site design and layout is prohibited. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks. | 5/23/2013 2:35:55 AM