Answer: Tooltip and Title both property is known to be shown information when a Mouse is hovers on any controls meaning that both is used for showing tooltip text.
But there is a little difference between them.
Tooltip is used in
Server controls i.e. Asp.Net controls whereas Title is used in
HTML controls .
For Example:-
<asp:Button ID="btn_save" runat="server" Text ="Save" ToolTip="Save Record" />
<input type ="button" value="Save" title="Save Record" />
Asked In: Many Interviews |
Alert Moderator