Html.BeginForm 无法正常工作



我想获取文本框值,我将根据该值下载一个 excel 列表。这是我的观点:

@using (Html.BeginForm("DownloadAttendeeExcel", "Attendee", FormMethod.Post, new { id = "downloadAttendee", @class = "stdform" }))
 {        <div>
            @Html.TextBoxFor(x => x.EventID, new { id = "eventID" })
        </div>       
       <div>
       @Html.TextBoxFor(x => x.EventName, new { id = "eventName" })
        </div>
 }

这是我的操作,但我无法根据文本框值设置 model.eventID,我不明白为什么。

public ActionResult DownloadAttendeeExcel(AttendeeListItem model)
        {
            Reservation res = new Reservation();
            res.EventID = model.EventID;
            return View();
        }

您的按钮 :

<a class="btn" type="button" id="downloadAttendees" ref="@Url.Action("DownloadAttendeeExcel", "Attendee")" style="width: 150px;">

将执行 HttpGet 并且不会发布您的表单数据。
指示表单提交其内容(其中包含的所有输入字段)的最简单方法是使用 html 提交按钮:

<input type="submit" value="Submit">

相关内容

  • 没有找到相关文章

最新更新