asp.net如何实现弹出对话框但页面不刷新?
asp.net如何实现弹出对话框但页面不刷新?--------------------编程问答-------------------- Reponse.Write("<script>alert('aaa');<"+"/script>") --------------------编程问答-------------------- window.showModalDialog(url,window,'dialogwidth:800px;dialogheight=300px;status=no;help=no;resizable=no;scroll=no;center=yes;location=no'); --------------------编程问答--------------------
btn.Attrubute.Add("onclick","return confirm("you information");");--------------------编程问答--------------------
Page.ClientScript.RegisterClientScriptBlock(this.GetType(),--------------------编程问答-------------------- 呵呵.比较基础.
"MyScript", "alert('Hello')", true);
也可以写个弹出层.样式比较好控制. --------------------编程问答--------------------
Page.ClientScript.RegisterClientScriptBlock(this.GetType(),--------------------编程问答-------------------- ajaxpro 可以实现 也不难 --------------------编程问答--------------------
"MyScript", "alert('aaa')", true);
--------------------编程问答-------------------- 用jquery弹很爽 --------------------编程问答-------------------- 客户端:
function show()
{
alert("show alert");
return false;
//return true 时提交刷新页面
}
补充:.NET技术 , ASP.NET