Message when javascript is disabled in the browser

When a browser user disables javascript, a message appears that indicates that vaadin applications must have javascript enabled. It there a way to redirect to another page, or change this message?

Thanks

To change the message, you can inherit ApplicationServlet (and use it in your web.xml) and override the method getNoScriptMessage().

As far as I can remember, there is no easy way to directly and immediately redirect to another page in that case but you would have to dig deeper into the internals.

Thanks Henri,

I will look into this.