由于某种原因,我的消息框不会显示。我输入我的代码没有错误,运行页面,单击按钮,没有任何反应。知道发生了什么事吗?
这是我的代码:
Protected Sub btncheckin(ByVal sender As Object, ByVal e As System.EventArgs)
Dim message As String = "Checked-In!"
Dim sb As New System.Text.StringBuilder()
sb.Append("<script type = 'text/javascript'>")
sb.Append("window.onload=function(){")
sb.Append("alert('")
sb.Append(message)
sb.Append("')};")
sb.Append("</script>")
ClientScript.RegisterClientScriptBlock(Me.GetType(), "alert", sb.ToString())
End Sub