Change the page "The application has gone off-line. Please try again later."

Ah. I see it there. Thanks, Michel. And it looks like I can’t assign it a value with

App.DisconnectMessage="App has gone bye bye!"

So I’m using Jay’s

Me.ExecuteJavascript("document.getElementById('XojoDisconnectCaption').innerHTML='App has gone bye bye!';")

I wanted to put a non-default message there in the Session.TimedOut event.

http://documentation.xojo.com/index.php/WebApplication.DisconnectMessage
You don’t have to use the javascript hack. Just change it in the IDE.

[quote=266540:@Tim Parnell]http://documentation.xojo.com/index.php/WebApplication.DisconnectMessage
You don’t have to use the javascript hack. Just change it in the IDE.[/quote]

I wanted a different DisconnectMessage when the disconnect is the result of a TimeOut, so I wanted to set that in the Session.TimedOut event. And Xojo won’t let me set it with App.DisconnectMessage=“text” in code.