在我的 Checkout.SelectAddress.cshtml 页面中,我有以下表单:
@using (Html.BeginFormAntiForgeryPost(Url.Action("SelectAddress", "Checkout", new { area = "Store" })))
{
//extra code collecting information
<li class="align right"><button type="submit">@T("Next")</button></li>
}
我正在使用 orchard cms 1.6,但我遇到了导航问题。当用户单击上面的按钮时,他们将被定向到 URL:
http://localhost:30320/OrchardLocal/UMACS.Store/Checkout/Summary
我想导航到:http://localhost:30320/OrchardLocal/
我尝试从原始表单中替换“结帐”,但没有任何乐趣。有人知道吗?