在ASP.NET饮弹出对话框

在ASP.NET中弹出对话框
如何在ASP.NET中,点击一个按钮,弹出一个对话框。是使用WebMessageBox.show么?需要引用什么 using system的什么?

------解决方案--------------------
response.write(<script>alert('弹出提示')</script>);
------解决方案--------------------
Response.Write("<script>alert(' 用户名不存在!')</script>")使用这个方法会改变页面的格局、
this.Page.RegisterStartupScript("msg", "<script>alert('用户名Unmi不存在!')</script>");
这样就可以再服务器端弹出脚本了、方法二不会改变页面额