I have a button on my webpage that runs some javascript code:
alert("Will refresh now");
window.location.reload(true);
It works in all the browsers we've tested it in.
But when I display that webpage inside my vb.net executable (in a WebBrowser control)... the "refresh" code is definitely run, but it just clears the screen.
Does anyone know why?