WebKit.Net is an open source project that provides a WebKit-based browser control for WinForms applications.
Questions tagged [webkit.net]
53 questions
0
votes
0 answers
how to get request header before send request with webkit/webkit.NET?
i created project http-connection(with display) via webkit.
and i need to display HTTP request, response header also, but i can't find how to get header.
i'm now using webkit with C#, but i can change project to C++ if nesessary.
i tried…

윤진수
- 106
- 1
- 1
- 9
0
votes
1 answer
How can I get FULL html code via Webkit.net
The website use ajax to load some data.When DocumentCompleted,I only get the html code without ajax data.
How to get the ajax data through webkit.net?
Thanks.

AlphaWu
- 181
- 1
- 1
- 8
0
votes
0 answers
Webkitdotnet printing issue
I use webkitdotnet and vb.net for making a small browser,
I make it and when i use print button on browser it prints, but i want to print it from web side for ex.
it does not get the command and it does…

hakansen
- 55
- 4
0
votes
2 answers
How to handle DOM events of WebKit.NET control?
With System.Windows.Forms.WebBrowser control, we can use the following code to handle DOM event:
HtmlElement centerButton = webBrowser.Document.GetElementById("centerButton");
centerButton.Click += this.WelcomeHandler_Click;
But while using…

victorwoo
- 2,107
- 3
- 17
- 20
0
votes
1 answer
using webkit.net to call javascript method from c#
from this question Using WebKit.NET to call a C# function from JavaScript.
I have been using a version webkit.net and the version I have does not do anything when calling callWebScriptMethod (to test I have used the same code with Forms.Webbrowser…

Paul Williams
- 161
- 1
- 10
0
votes
3 answers
Webkit.Net C#: How to import JavaScript in HTML
I'm developing a C# application using Webkit.Net component. To be cleared, documentText is the only way to display dynamically generated HTML strings.
As title shown, is it possible to have something like this: