Click here to Skip to main content
15,889,876 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
in my project i am using a link button. on button click event i am doing some action. when i replaced the link button with normal button on mouse over it is not displaying link. please some one tell me how to achieve this
Posted

1 solution

Add Following CSS to your button
CSS
.ButtonASLink
{
  border:none;
  background-color:transparent;
  cursor:pointer;
  text-decoration:underline;
  padding: 0px;
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900