⽹页弹出提⽰框的⼏种⽅法.
1. 在js⾥⾯使⽤ alert("您的消息")
2. 在后台代码⾥⾯输出js脚本
button1.Attributes.Add("onclick", "return confirm('确定删除吗?');");
3. 在后台代码⾥⾯:
Response.Write("<script language=javascript>window.alert('" + ls_ts+ "');</script>"); //显⽰提⽰框
4. Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "<script language=javascript>window.alert('ff');</script>");如果页⾯中使⽤了Ajax ,则上述代码即使执⾏也⽆效果。应对这种情况我们通常采⽤:
ScriptManager.RegisterStartupScript(this.Button1, this.GetType(), "alertScript", "window.alert('ff')", true);
或者
ScriptManager.RegisterStartupScript(this.UpdatePanel1, this.GetType(), "alertScript", "window.alert('ff')",
true);
其中第⼀个参数为要注册脚本的控件ID,试了⼀下,只要是本页⾯的就⾏。
第⼆个参数为注册脚本控件类型,是控件还是this的GetType()都可以,typeOf(string)也没问题.
第三个脚本函数的名字,随便起。
第四个是脚本内容。
第五个是标明是否再添加脚本标签,如果第四个参数⾥包含了<script></script>标签,此处则为false,否则为true。
5. //如果页⾯上使⽤了 UpdatePanel
注册页面js特效ScriptManager.RegisterStartupScript(this.UpdatePanel1, this.GetType(), "click", "alert('yyyyy')", true);
注解: message 是您要弹出的信息
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论