samsmithnz
Senior Contributor
I have a little app I'm developing, and when a certain menu item is clicked I want to display a webpage using javascript (i just want a small window).
Currently I'm using the code:
The problem is that it works, but has a nasty side effect, it opens a normal IE window first, and then displays the javascript on top.
Does anyone know another way to creating this javascript window or removing the initial IE window???
Currently I'm using the code:
Code:
System.Diagnostics.Process.Start("javascript:window.open('http://www.samsmith.co.nz/tab', null, 'menubar=no,scrollbars=no,toolbar=no,width=500,height=520');")
The problem is that it works, but has a nasty side effect, it opens a normal IE window first, and then displays the javascript on top.
Does anyone know another way to creating this javascript window or removing the initial IE window???