ASP.net中怎么弹出javascript窗口?
点击按钮后弹出alert("xxx"),在按钮的事件里面要怎么写?
点击按钮后弹出alert("xxx"),在按钮的事件里面要怎么写?
先放个lable之类的,在写上
lable1.Text = "<script>alert('xxxxx');</script>";
或者 Response.Write("<script>alert('xxxxx');</script>";);
不过这种没有上面那种好。
button1.Attribute.Add("onclick","alert('欢迎光临我的网站:http://kx91.com')");