how to get on mouse over message in .aspx page
-
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
-
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
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
-
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
on mouse over message in .aspx page. thank you
j somasekhar
-
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
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