我试过的
我从昨天开始尝试这个,当 ASP Button_Click 时触发 alert()。但是,当我将此脚本粘贴到 Page_Load 中时,它工作得非常好。
ScriptManager.RegisterStartupScript(this, typeof(Page), "alert", "alert('Fill all fields.');", true);
我也用下面的代码尝试过,ClientScript.RegisterStartupScript
它适用于页面加载而不是 ASP Button_Click
ClientScript.RegisterStartupScript(this.GetType(), "Alert", "alert('Fill all fields.');", true);
我需要做什么
需要验证客户端存在的文本框,如果这些文本框为空,则应显示警告对话框。