URL Internet Explorer

I want to redirect to a URL using "…/…/ Xpagina " this works fine in firefox but not int IE. What can I do?


Yo deseo redireccionar a una URL usando “…/…/Xpagina” en firefox funciona bien pero en IE no. Qué puedo hacer ahí?

WebApplicationContext context = ((WebApplicationContext) getWindow().getApplication().getContext());
WebBrowser webBrowser = context.getBrowser();
String url = “…/html/xxxxx”;
if(webBrowser.isIE()){
url = “…/…/…/html/xxxxx”;
}

Hi,

FYI: this
browser independent
code snippet works well for me.

vaadinApplication.setLogoutURL(this.getURL().toURI().resolve("../url-of-your-choice").toString());
vaadinApplication.close();

Tomas