tooltip is not appearing for Asp.Net applicaton

  • Thread starter Thread starter faraz
  • Start date Start date
F

faraz

Hi,
I am building a site through Asp.net 2.0/C#. the problem is my
application has tooltips which are appearing normally when i run the
app or deploy to webserver and access through my pc. but there are
some pc's for which my asp application doesnt show tooltip at all... I
have never seen this behavior on my development pc.


can you please tell me what can be the cause of disabled tooltip for
asp.net 2.0 app???? ....


thanks in advance.
 
or if this is becuase the browser IE6 or IE7 please tell me that as
well....

FYR im using IE7
 
for example i have a gridview using the template field and in the
item template im using label control.

<ItemTemplate>
<asp:Label ID="lblLastRentRate" runat="server" Text="Rent"'
ToolTip="Annaul" ></asp:Label>
</ItemTemplate>


this Tooltip Annaul is not appearin in some of the pcs.
 
For example I have a GridView using a TemplateField and in the
ItemTemplate I'm using a Label control.

<ItemTemplate>
<asp:Label ID="lblLastRentRate" runat="server" Text="Rent"'
ToolTip="Annaul" ></asp:Label>
</ItemTemplate>

This ToolTip Annaul is not appearing in some of the PCs.

http://www.velocityreviews.com/forums/t105883-tooltips-in-a-boundcolumn.html

On the PCs where the ToolTip doesn't appear, does the title attribute of the
rendered <span> appear correctly when you view the document's source...?
 
Back
Top