如何在aspx网页编程中加入javascript语言元素?例如:window.alert("Welcome! Press OK to continue.");多谢
窗体下方有个设计选项卡和HTML选项卡.单击HTML选项卡.你平时普通HTML页面怎么写这里就怎么写.
谢谢您的答复,但我想问的是如何在aspx编程中,例如 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click End Sub事件处理程序中加入javascript语言元素,例如加入window.alert("Welcome! Press OK to continue."); 谢谢
使用response.write发送到客户端,或者增加一个Literal控件,将代码写入Text属性
在Page_Load里加入
Button.Attributes.Add("onclick","javascript:alert('Welcome! Press OK to continue.')");