2

当用户单击 时Html.ActionLink,我需要调用一个控制器方法,该方法将为csv用户下载报告。我还需要将两个输入框中的值传递给这个控制器,这两个输入框将表示他们正在寻找的开始和结束日期范围。

目前我可以使用 jQuery 分配Html.ActionLink参数,但是它们没有返回到控制器。null控制器方法中的两个参数都用值实例化。

我也不能使用表单/提交方法,因为该特定表单已使用该方法,以允许用户在导出到 csv 之前查看请求的日期范围内的数据。

jQuery

$(document).ready(function() {
    $('#startDate').change(function () {
        $('a').attr('start', $(this).val());
    });

    $('#endDate').change(function () {
        $('a').attr('end', $(this).val());
    });
});

ASP MVC 3 视图

@using (Html.BeginForm())
{
    <div id="searchBox">
        @Html.TextBox("startDate", ViewBag.StartDate as string, new { placeholder = "   Start Date" })
        @Html.TextBox("endDate", ViewBag.EndDate as string, new { placeholder = "   End Date" })
        <input type="image" src="@Url.Content("~/Content/Images/Search.bmp")" alt="Search"  id="seachImage"/>
        <a href="#" style="padding-left: 30px;"></a>
    </div>
    <br />
    @Html.ActionLink("Export to Spreadsheet", "ExportToCsv", new { start = "" , end = ""} )
    <span class="error">
        @ViewBag.ErrorMessage
    </span>
}

控制器方法

    public void ExportToCsv(string start, string end)
    {

        var grid = new System.Web.UI.WebControls.GridView();

        var banks = (from b in db.AgentTransmission
                    where b.RecordStatus.Equals("C") &&
                          b.WelcomeLetter
                    select b)
                    .AsEnumerable()
                    .Select(x => new
                               {
                                   LastName = x.LastName,
                                   FirstName = x.FirstName,
                                   MiddleInitial = x.MiddleInitial,
                                   EffectiveDate = x.EffectiveDate,
                                   Status = x.displayStatus,
                                   Email = x.Email,
                                   Address1 = x.LocationStreet1,
                                   Address2 = x.LocationStreet2,
                                   City = x.LocationCity,
                                   State = x.LocationState,
                                   Zip = "'" + x.LocationZip,
                                   CreatedOn = x.CreatedDate
                               });


        grid.DataSource = banks.ToList();
        grid.DataBind();

        string style = @"<style> .textmode { mso-number-format:\@; } </style> ";

        Response.ClearContent();
        Response.AddHeader("content-disposition", "attachment; filename=WelcomeLetterOutput.xls");
        Response.ContentType = "application/excel";
        StringWriter sw = new StringWriter();
        HtmlTextWriter htw = new HtmlTextWriter(sw);
        grid.RenderControl(htw);
        Response.Write(style);
        Response.Write(sw.ToString());
        Response.End();
    }
4

2 回答 2

3

我认为问题在于链接没有“开始”或“结束”属性。所以$('a').attr('start', $(this).val());不会做任何事情。

<a href="#" id="lnkExport">Export to Spreadsheet</a>

$('#lnkExport').click(function (e){
 e.preventDefault();
 window.location = '/Home/ExportToCsv?start=' + $('#startDate').val() + '&end=' + $('#endDate').val();
});
于 2013-08-06T21:00:01.790 回答
1

我也不能使用表单/提交方法,因为该特定表单已使用该方法,以允许用户在导出到 csv 之前查看请求的日期范围内的数据。

实际上,您可以在表单中有 2 个提交按钮,并且在您的 POST 控制器操作中知道单击了哪个按钮以便采取相应的行动。就像这样:

<button type="submit" name="btn" value="search">Search</button>
<button type="submit" name="btn" value="export">Export to Spreadsheet</button>

现在你的控制器动作可以接受一个btn参数:

[HttpPost]
public ActionResult SomeAction(MyViewModel model, string btn)
{
    if (btn == "search")
    {
        // The search button was clicked, so do whatever you were doing 
        // in your Search controller action
    }
    else if (btn == "export") 
    {
        // The "Export to Spreadsheet" button was clicked so do whatever you were
        // doing in the controller action bound to your ActionLink previously
    }

    ...
}

如您所见,在这两种情况下,表单都提交给相同的控制器操作,您显然会从表单数据中获取视图模型,此外您还将知道单击了哪个按钮以采取适当的操作。所以现在你可以摆脱你可能编写的所有花哨的 javascript 和锚。即使用户禁用了 javascript,您的应用程序也能正常工作。它是普通的、简单的 HTML。

注意:请记住,您在问题中显示和调用的控制器方法在 ASP.NET MVC 中不是标准的。在 ASP.NET MVC 中,这些方法具有名称。Tjeir 被称为控制器动作,必须返回ActionResults而不是无效。另外,您似乎正在var grid = new System.Web.UI.WebControls.GridView();认真地在 ASP.NET MVC 应用程序中使用 .

于 2013-08-06T20:59:00.893 回答