Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embedded WebBrowser web console access

I have a .NET app that runs an embedded web browser (System.Windows.Forms.WebBrowser). I can't figure out how to access the web console that I can normally access by pressing f12 (equivalent to firebug's console). Is there a way to enable this? Also is it possible to redirect this output to a file?

like image 269
sworded Avatar asked Oct 02 '12 15:10

sworded


2 Answers

Have you tried using FirebugLite ?

https://getfirebug.com/firebuglite

Include this script inside your page and you will have a lite version of firebug which you can use to debug your JS.

<script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>
like image 102
Amitd Avatar answered Oct 14 '22 23:10

Amitd


The embedded web browser does not support ActiveX controllers, so there is no web console.

like image 3
Stefan P. Avatar answered Oct 14 '22 22:10

Stefan P.