gpt4 book ai didi

c# - 我正在尝试通过 C# 调用操作结果方法

转载 作者:行者123 更新时间:2023-12-04 05:43:09 24 4
gpt4 key购买 nike

我有一个想要运行的操作结果方法。我如何通过 C# 代码调用它?

public ActionResult Edit(int? id, string error)
{
....
}

最佳答案

试试这个,它应该可以工作:

return RedirectToAction("Edit", new { id = contractInstance.SalesContractId, error = ""});

要在新页面上打开操作,您需要将 html 属性和 Controller 名称添加到您的操作中:
@Html.ActionLink("Edit", "Edit", "TypeControllerName", new { id = contractInstance.SalesContractId, error = ""}, new {target = "_blank"})

关于c# - 我正在尝试通过 C# 调用操作结果方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11013047/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com