我試圖在提交請求時顯示提醒消息。警報消息應該是ViewBag的內容。這是我的觀點。在對話框視圖中顯示ViewBag內容
@{
ViewBag.Title = "Request";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@if (!string.IsNullOrEmpty(ViewBag.message))
{
<script type="text/javascript">
var msg = "@ViewBag.message";
alert(msg);
</script>
}
即使ViewBag.message具有值,也沒有警報。
你嘗試過它包裝'document.ready'? –
您可以提供您返回此視圖的操作嗎? – Usman
public ActionResult Index() ViewBag.message = TempData [「Message」]。ToStr(); return View(); } –