我使用下面的脚本在浏览器的状态栏上显示消息。
If Session("UserName") IsNot Nothing Then
Dim strUserMessage As String = Session("UserName").ToString & ", Welcome to ABC Application"
Page.ClientScript.RegisterStartupScript(Me.GetType(), "strUser", "<script>window.status = '" & strUserMessage & "' </script>")
End If
但是,此消息已在locahost / Intranet上正确显示。
但是每当我们在互联网上托管这个网站时。此消息未显示。
我们是否必须进行某些配置设置???