views:

114

answers:

2
+2  A: 

Use an <input type="image" ... /> tag:

<input type="image" src="/path/to/image.file" alt="Alt text" />

It acts as a submit button, but displays an image instead.

Amber
+1  A: 

use css.

.as_link {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0px;
    color: red;
    float: right;
    etc...
}

Etc.

Edit: just re-read your question. Use the above but call it "x", I'm not sure that you're going to be using this for a web .net app (as I'm not familliar with the way of .net but if you are it will work, else ignore me :) )

Dorjan