最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

.net core - Form tag helper generating a key-value pair in action - Stack Overflow

programmeradmin1浏览0评论

I'm working on upgrading a .NET Framework 4.8 app to .NET Core 8.

Currently experiencing an issue where both Html.BeginForm and the form helper tag sometimes render the wrong action.

In Framework 4.8, I have a form like this:

<form method="post" action="/Controller/Action?paramOne=123">
  ...
</form>

In Core 8, the same form renders like this instead:

<form method="post" action="[paramOne, 123]">
  ...
</form>

I get this result with Html.BeginForm and also with <form asp-controller="Controller" asp-action="Action" method="post">.

What might be causing this result?

I'm working on upgrading a .NET Framework 4.8 app to .NET Core 8.

Currently experiencing an issue where both Html.BeginForm and the form helper tag sometimes render the wrong action.

In Framework 4.8, I have a form like this:

<form method="post" action="/Controller/Action?paramOne=123">
  ...
</form>

In Core 8, the same form renders like this instead:

<form method="post" action="[paramOne, 123]">
  ...
</form>

I get this result with Html.BeginForm and also with <form asp-controller="Controller" asp-action="Action" method="post">.

What might be causing this result?

Share Improve this question asked 21 hours ago asfallowsasfallows 6,1087 gold badges33 silver badges48 bronze badges 1
  • Note: I understand that querystring params are less idiomatic compared to RESTful routes, but if it's possible to get things working with the querystrings for now, I'm currently willing to choose the quick fix over correctness – asfallows Commented 21 hours ago
Add a comment  | 

1 Answer 1

Reset to default 0

In Asp core MVC, to add parameters in the <form> tag, you could use the asp-route-<Parameter Name> attribute, code like this:

<form asp-action="Create" asp-route-paramOne="123" method="post">

In addition, if you want to use the action attribute directly, you can use the following method.

  <form action="/Home/Create?paramOne=123" method="post">

Note: When use the action attribute, in the controller, you have to use the HttpGet and HttpPost verb together.

public class HomeController : Controller
{
    private readonly ILogger<HomeController> _logger;

    public HomeController(ILogger<HomeController> logger)
    {
        _logger = logger;
    }

    public IActionResult Index()
    {
        return View();
    }
    [HttpGet]
    public IActionResult Create()
    {

        return View();
    }
    [HttpPost]
    [IgnoreAntiferyToken]
    public async Task<IActionResult> Create(
    [Bind("EnrollmentDate,FirstMidName,LastName")] Student student, int paramOne)
    {
        //insert into database.
        return View(student);
    }
发布评论

评论列表(0)

  1. 暂无评论