Currently, I have found a way to host the current installation of Internet Explorer in kiosk mode using asp.net and VB
System.Diagnostics.Process.Start("iexplore", "-k " & "http://www.google.co.uk")
The -k option is a command that puts the browser in kiosk mode, however other browsers, such as chrome, only place a new instance of the page in another tab, and firefox simply opens the browser without loading the window. I need to know which commands to pass so that chrome and firefox respond in the same way as IE.
Thank you very much
source share