chris123321
IS-IT--Management
On the mouseover, onclick, onmouseout the link button shows the javascript: _PostBack..
On the ItemDataBound event of the DataList, I added the code below:
for the onClick and onMouseOut events as well.
One issue is that the onClick event is not being triggered so when the user clicks on the linkbutton the javascript statusmsg doesn't show.
My next step is to show in the status bar. Any suggestions on what code I should add to window.status?
I had a hard time searching for this information on the web so any links would be appreciated.
Thanks.
On the ItemDataBound event of the DataList, I added the code below:
Code:
CType(e.Item.FindControl("LinkButton1"), LinkButton).Attributes.Add("onMouseOver", "return statusMsg()")
for the onClick and onMouseOut events as well.
One issue is that the onClick event is not being triggered so when the user clicks on the linkbutton the javascript statusmsg doesn't show.
My next step is to show in the status bar. Any suggestions on what code I should add to window.status?
I had a hard time searching for this information on the web so any links would be appreciated.
Thanks.