I try to add a cancel button in MVC form besides submit button which is also image button.
The code is :
<input type="image" src="../../Images/SUBMIT_bttn1.gif" alt="Submit" />
<a href='<%= Html.ActionLink("EditPage", "Home")%>'>
<img src="../../Images/Cancel_bttn1.gif" /></a>
But it gives Error :
Server Error in '/' Application. HTTP Error 400 - Bad Request
What is the problem?
Thanks.