使用VS 2013和asp.net VB。
我正在使用javascript向用户显示弹出窗口,如果他们需要完成的表单中缺少某些数据。代码在
之下Notification("alert('Please complete all fields in this section.')")
Public Sub Notification(ByVal text As String)
Dim script As String = text
If Not Page.ClientScript.IsStartupScriptRegistered(Me.GetType(), "alertscript") Then
Page.ClientScript.RegisterStartupScript(Me.GetType(), "alertscript", script, True)
End If
End Sub
我收到以下错误
第500行的JavaScript严重错误,http://localhost:61157/NewNCR.aspx中的第53列\ n \ nSCRIPT1004:预期';'
问题是我在之前的应用程序中使用了相同的代码,它工作正常。我错过了什么吗?