问题
How do you create a plain old image button in MVC 4 (Razor)? I'm looking for something like this

回答1:
try this
@using (Html.BeginForm("ActionTaken", "TestController")) {
<button name="button" value="ActionOne" class="button" style="width: 200px;">
<img src=""/></button>
<button name="button" class="button" style="width: 160px;" value="ActionTwo">
<img src=""/></button> }
回答2:
Add this to your razor view:
<input type="image" src="<image path here>" alt="Submit" width="48" height="48">
来源:https://stackoverflow.com/questions/17610391/how-to-create-an-image-button-in-mvc-4