[求助]如何在aspx网页编程中加入javascript语言元素?
如何在aspx网页编程中加入javascript语言元素?
例如:window.alert("Welcome! Press OK to continue.");
多谢
如何在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.");
谢谢
在Page_Load里加入
Button.Attributes.Add("onclick","javascript:alert('Welcome! Press OK to continue.')");