<a href="/Service/LogOutConfirm?ID=<%=servicelogout.Id%>&&State=<%=servicelogout.State%>">确认</a>
         [HttpPost]
         public ActionResult LogOutConfirm(int ID,int State)
         {
             ServiceLogOut servicelogout = servicelogoutRepository.GetModel(ID);
             servicelogout.State = State + 1;
             servicelogoutRepository.Update(servicelogout);
             Message = "确认成功";
             return RedirectToAction("LogOutList");
         }我这样写超链接="/Service/LogOutConfirm? 这样好像只能调用view 怎么才可以只调用[HttpPost]的action