How do I catch the value of an image button in a controller. I have:
<input type="image" id="savebutton" name="savebutton" value="next" src="..." />
In my controller I have
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult BillingShipping(string savebutton)
{
...
}
This works in Firefox but not in IE. However, if I change the button into a type="submit" it works fine.
Anyone please?
Thanks