如何在 C# 中的 Web 应用程序上向用户显示警报?我试图通过调用我正在编写的 C# 中的 JS 函数来做到这一点,但由于 Page.ClientScript 未被识别,因此我不确定如何执行此操作。我需要包含不同的命名空间吗?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Transactions;
using System.Web.Http;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Diagnostics;
.
.
.
while (physAuthToUpdate.start_date < physAuthToUpdate.end_date)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "print", "<script>showAlertWindow('Error: End date cannot come before begin date.');</script>");
}
.
.
.