Button : problem with the click event

Button : problem with the click event

Hello,

Currently, I'm working with Visual Studio 2012 under a "ASP.NET MVC 4" project in the web development. So, I've some views that are in the 'View' Directory and the controllers in the 'Controller' directory.

On one of the page that I have, I created a 'back' button to come back at the previous page. When I click on this one, I would like to arrive in the 'backToPreviousPage' method of the controller associated at my view. But it's not possible now. I often have this error : 'error loading page'. Do you have any ideas ? How do I must do ?

Thank you

Example :
Holidays view (index.cshtml)

...
<body>

    <div data-role="page" id="page1">
        <div data-theme="b" data-role="header">
            <button type="submit" data-mini="false" data-inline="false" data-theme="b">Back</button>
            <h4>Gestion congés
            </h4>
        </div>
...

Holidays controller(HolidaysController.cs)


    public class HolidaysController : Controller
    {
        // GET: /Holidays/
       
        public ActionResult Index()
        {
            return View();
        }

        [HttpPost, ActionName("Index")]
        public ActionResult backToPreviousPage()
        {
            return RedirectToAction("Index2", "Home");
        }
    }