How to create an Image button in MVC 4

asp.net-mvc-4, c#, imagebutton, razor

Solution

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>             }

Problem

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

Original source