//用return 不可以跳转到Button1.PostBackUrl指定的连接
this.Button1.OnClientClick = "javascript:return confirm( 'are you sure? '); ";
//用alert 可以跳转到Button1.PostBackUrl指定的连接
// this.Button1.OnClientClick = "javascript:alert( 'are you sure? '); ";
why?
------解决方案--------------------------------------------------------
帮顶
------解决方案--------------------------------------------------------
我以前遇到过这样的问题
1.看客户端的生成代码是否正确?
2.清理IE所有Cookie,临时文件等等,然后重启,我就是这样搞定的。不明白原因
希望对你有用