我想更改“你确定......?”消息框的文字。 “您的信息已准备好提交”当我使用下面的代码执行此操作时,消息框不再有效。这段代码是否依赖于“你确定”部分吗?
Try
Dim msg As String = "Hello!"
Dim script As String = "if(confirm('You're information is ready to be submitted')) {window.location.href ='frmMain.aspx'; }"
ScriptManager.RegisterClientScriptBlock(Me, Me.[GetType](), "Test", script, True)
Catch ex As Exception
End Try
答案 0 :(得分:4)
“你是”中的撇号需要逃脱。将“你是”改为“你是”。
编辑:评论中提出了一个很好的观点 - 语法上,它应该是“你的”。