I have a anchor tag enclosing a button I want to redirect it to spring controller when click the button. The below code is working on chrome browser but it is not working in IE. could you please help me?
<spring:url value="/auth/userhome" var="homepage" />
<a href="${homepage}">
<button type="button" class="btn btn-primary cancel">
<spring:message code="button.cancel" />
</button> </a>