点击搜索按钮后如何在索引视图上显示临时数据值。
我尝试过,但是不起作用。
在Index.cshtml上
我有这个按钮
<button type="button" class="btn btn-primary" id="btn-search">Search</button>
我在Index.cshtml脚本标记中的jquery代码下面有这个
$('#btn-search').on('click', function () {
//var data = { UserName: $('#txtusername').val(), Locality: $('#Locality').val() }
var data = { UserName: $('#txtusername').val(), Locality: $('#Locality').val() }
$.ajax({
url: '@Url.Action("Search", "Report")',
type: "POST",
data: data,
success: function (response) {
},
error: function () {
}
});
});
在报表控制器中执行搜索操作时,我正在使用以下功能
public ActionResult Search(string UserName, int? Locality)
{
TempData["Hello"] = "Hello";
return View();
}
我希望在Index.cshtml上显示@TempData["Hello"]