rss
twitter
    Find out what I'm doing, Follow Me :)

Make a button look like a link button in asp.net

If you're tying to make an asp.net Button look like a linkbutton or a hyper link.

Try this css class.

.linkButton
{
background-color: transparent;
border-style: none;
color: /* Something nice */
cursor: pointer;
text-align: left;
text-decoration: underline;
display: table-cell;
}

Worked for me.

-- Lee

0 comments: