Link to home
Start Free TrialLog in
Avatar of lynnton
lynnton

asked on

creating links

Hi,

How can we create a link without the underline below them? I'm using asp.net webcontrol hyperlink control

Thanks.
Avatar of laotzi2000
laotzi2000

add attribute
style="text-decoration:none"
u can add a style class to the link .. this style can be defined so that it does not have a underline ....

<Style>
.MyClass
{
.. urstyle
}
</Style>
<asp:HyperLink id="HyperLink1" runat="server" CssClass="MyClass">HyperLink</asp:HyperLink>
Avatar of lynnton

ASKER

Is it okay if you could kindly guide me o nthe code below:

                        <table cellspacing="0" bgcolor="whitesmoke">
                            <tbody>
                                <tr>
                                    <td>
                                        <asp:HyperLink id="HyperLink3" runat="server" Font-Size="XX-Small" Font-Names="Verdana" NavigateUrl="desigmas.aspx" Font-Bold="True">Deignation database</asp:HyperLink>
                                    </td>
                                </tr>
                                <tr>

SOLUTION
Avatar of Rejojohny
Rejojohny
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial