服务端弹出信息选择


Warning: Undefined array key "HTTP_REFERER" in /www/wwwroot/prod/www.enjoyasp.net/wp-content/plugins/google-highlight/google-hilite.php on line 58

1,弹出窗口
(1)ClientScript.RegisterClientScriptBlock(GetType(), “AmountError”, “<script language=’javascript’>alert(‘产品最多只能打九折!’);</script>”);
?? ? 在页面前加入alert,这样执行的话会先弹出alert,因后面的还没有加载,故会出现一个空白页面,点确定之后再全部出现所有页面。
(2)ClientScript.RegisterStartupScript(GetType(), “AmountError”, “<script language=’javascript’>alert(‘产品最多只能打九折!’);</script>”);
??? 在页面后加入alert,页面加载完之后再弹出,不会有空白页面的情况。
?? 最好用(2)

2,在.CS程序中设置一个public 变量,在页面中用<%=AmountError%>,因服务器处理很快,会很快返回,出现近似局部刷新的结果。