Asp.net中messagebox的实现方法
在asp.net中没有messagebox用法。。要是直接用response.write(
"#######"
)的话,就会直接在页面上显示######,这样看起来很杂乱,也不美观,更不容易看。还是用对话框的形式显示会比较好点。方法:直接写代码:Response.Write(
"<script>window.alert('#######');</script>"
);就可以了。Response.Write(
"<script>alert('#######');</script>"
);
提示成功后转到别的页面
Response.Write(
"<script>window.alert('提示语句');window.location='abc.aspx'</script>"
);
《Asp.net中,有的时候在执行某个操作的时候希望能够弹出一些信息框:alert弹出的警告信息框,confirm弹出的包含确认和取消两个按钮的信息框,以及prompt弹出的输入数据的对话框。这里有两种方法来实现。
(1)Alert的使用:
Response.Write(
"<script>alert('密码不正确!')</script>"
);
(2)Confirm的使用:
Response.Write(
"<script>window.confirm('确实要删除吗?');</script>"
);
(3)Prompt的使用:
Response.Write(
"<script> var result=window.prompt('请输入新文件名:' ), 'ABC'); if(result!=null) alert('你输入的是'+result);</script>"
);
》