4

我试过的

我从昨天开始尝试这个,当 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);

我需要做什么

需要验证客户端存在的文本框,如果这些文本框为空,则应显示警告对话框。

4

1 回答 1

3
ScriptManager.RegisterStartupScript(this, typeof(Page), "alert", "alert('Fill all fields.');", true);

return;
于 2013-08-22T06:40:45.123 回答