我有一个Tempada在msg错误中显示错误列表,我创建一个列表,在我的foreach中,每个错误都找到它,我在列表中添加一个错误,后来我在TempData中显示此列表
public IActionResult Demo()
{
List<string> LogErros = new List<string>();
try
{
foreach (var item in somethings)
{
// if have some error add to list
LogErros.add();
}
if (LogErros.Count > 0)
{
TempData["error-message"] = LogErros;
}
}
return View();
}
我尝试这样:
@if (TempData["error-message"] != null)
{
<div class="alert alert-danger alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">x</button>
@TempData["error-message"]
</div>
}
但出现错误,
相关分类