首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

页面里面只有一个用户控件,加不了 onbeforeunload解决思路

2012-04-24 
页面里面只有一个用户控件,加不了 onbeforeunload一般的页面可以再BODY里面加 onbeforeunload可是在用户控

页面里面只有一个用户控件,加不了 onbeforeunload
一般的页面可以再BODY里面加 onbeforeunload
可是在用户控件里没有BODY,请问怎么在用户控件里加onbeforeunload?



[解决办法]
Page.ClientScript.RegisterStartupScript(Page.GetType(), "js", "window.onbeforeunload=xx", true);



<script>
function xx() {
alert("onbeforeunload")
}
</script>

热点排行