日期:2014-05-17 浏览次数:20553 次
ClientScript.RegisterStartupScript(Page.GetType(), "", "alert('请输入查询条件!');", true);
------解决方案--------------------
this.Page.ClientScript.RegisterStartupScript(this.GetType(), "js", "alert(\"请输入查询条件!\");"); ");
------解决方案--------------------
Page.RegisterStartupScript("MSG", "<script language='javascript' for='window' event='onload'>alert('请输入查询条件!');</script>");
------解决方案--------------------
Response.Write("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>");
Response.Write(" <script>alert(\"请输入查询条件!\"); </script>");
-----------------------------
这样试试看。