Dear All,
How can i remove underline for Hyperlink button.
ex:
Test
Output:
Test
my requirement is i need to display it as Test
Please let me know..
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Feb 9, 2012, 5:55 AM
Try this...
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication8._Default" %>
Thanks
khaleel shaikPosted Feb 13, 2012, 4:33 AM
a
{
text-decoration:none}
a:hover
{
text-decoration: underline
}
by using this style we can remove the underline for the hyperlink
SIVAPosted Feb 9, 2012, 6:57 AM
SIVAPosted Feb 9, 2012, 5:38 AM
Satyapriya NayakPosted Feb 9, 2012, 5:34 AM
Try this,
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication8._Default" %>
Thanks