0

在我的 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/

我尝试从原始表单中替换“结帐”,但没有任何乐趣。有人知道吗?

4

1 回答 1

1

该表单发布到某个模块中的特定操作,该模块显然名为“Store”。该操作似乎随后重定向到摘要。你可以让它重定向到别的东西的唯一方法是改变它的代码。

于 2013-06-22T20:58:04.553 回答