Button in jsp

Hi,
I have editing on login.jsp. I add a button that will redirect to other new page. When i click on that button, it always return to login.jsp page. How can i resolve this problem?

Hi,

Example :

<header class="header">
    <div class="navbar navbar-inverse navbar-fixed-top">
        <div class="navbar-inner">
            <div class="container-fluid">
                <ul class="nav nav-shortcuts pull-right">
                    <li class="divider-vertical"></li>
                    <li><a href="http://www.axelor.com/communaute/#telechargements" target="_blank"><i
                            class="fa fa-download"></i> <%=labelDownload%>
                    </a></li>
                    <li class="divider-vertical hidden-phone"></li>
                    <li><a href="http://www.axelor.com/contact" target="_blank"><i
                            class="fa fa-envelope-o"></i> <%=labelContact%>
                    </a></li>
                </ul>
            </div>
        </div>
    </div>
</header>

Yes, that example working because the link is going to other website. In my case, i create a new jsp file in webapp, for example home.jsp. Then, when i create the button in login.jsp to access home.jsp. The result is it always return to login.jsp when i clicked that button.

Hi,

Can you give the code part of your button ?

Thks