WebKit.Net is an open source project that provides a WebKit-based browser control for WinForms applications.
Questions tagged [webkit.net]
53 questions
2
votes
1 answer
Webkit.net opening new tabs and windows
I can easily do this by using webkit.net's context menu:
private void browser1_NewWindowRequest(object sender, WebKit.NewWindowRequestEventArgs e)
{
((Form1)MdiParent).AddTab(e.Url.ToString());
}
However newWindowrequesteventargs e returns null…

user2319683
- 79
- 1
- 7
2
votes
1 answer
Webkitdotnet Pagesetting.margin set error
i am new in vb and i dont understand the error,
this code uses webkitdotnet and i made a browser and i want to change print pagesetting margin values.
code is,
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
…

hakansen
- 55
- 4
2
votes
1 answer
Get HTTP headers on WebKit.NET
I've been trying to figure out how to handle 401 responses on WebKit.NET and show an authentication box so that user can enter his credentials and then send them back to the server.
This guy figured a way to add the proper headers to a new request…

Juan
- 15,274
- 23
- 105
- 187
1
vote
4 answers
Is there a way to run c# forms application without showing a gui window (like a console application)
Is there a way to run c# forms application without showing a gui window (like a console application). I'm trying to take screen shorts of webpages loaded into a webkit.net control.
Everything works fine and I can get screenshots but if there is a…

ivymike
- 1,511
- 2
- 20
- 27
1
vote
1 answer
.NET WebBrowser control with good performance and automatic NTLM authentication
For our project we need .NET WebBrowser control that supports automatic Windows authentication (like IE does). We have reviewed a number of options, but still can't select proper one:
1) Standard WebBrowser control based on IE. Quite fast, but it…

Andrey Gulaev
- 83
- 8
1
vote
1 answer
jquery attribute getter breaks my webkitdotnet
I use a webkit dot net browser through c#, and I have a website that I am showing through that browser in a desktop application. Anyway, I came to a conclusion (tested line by line) the this line "breaks" my program (that is, nothing is…

Nikola
- 14,888
- 21
- 101
- 165
1
vote
1 answer
Webkit.net scroll document programmatically
if I use Webkit.Net to display HTML in my winforms application everytime I set the DocumentText property, the document is scrolled back to the beginning.
How can I get the current scroll position and set it after I changed the document text?

MartinStettner
- 28,719
- 15
- 79
- 106
1
vote
1 answer
Integrate generated images into webkit browser in .NET
I'd like to use the .NET port of WebKit (http://webkitdotnet.sourceforge.net/) to display generated HTML as well as generated images.
I can set the document html easily using the DocumentText property. How could I pass the images into the…

MartinStettner
- 28,719
- 15
- 79
- 106
1
vote
0 answers
Can Webkit .net instantiate a browser instance with no form interface?
Or, for that matter, is there another productive way to access Webkit in C# than Webkit.net? I'm trying to create a website thumbnail generator using Webkit in a web service. It's a piece of cake to do with a WinForms host for the control, but I…

Chris B. Behrens
- 6,255
- 8
- 45
- 71
1
vote
1 answer
How to get HTML form data opened in Webkit.Net
I have a HTML5 page loaded in Webkit.Net. Now, I am trying to get the data enetered by user on HTML page.
I am trying the following code:
WebKit.DOM.Document doc1 = webKitBrowser1.Document;
WebKit.DOM.Element name1 =…

Anshul
- 234
- 2
- 16
1
vote
0 answers
Webkit.NET set Local Storage data?
I am using WebKit.NET to simulate a WhatsApp-Bot. I have looked for the required LocalStorage files and loaded the WhatsApp connection data into my C# Application.
My local storage is currently a Directory containing the relevant…

unknown6656
- 2,765
- 2
- 36
- 52
1
vote
0 answers
Using WebKit.NET to browse a .htaccess protected page
I'm using WebKit.NET in a C# application on Win7 (32bits) to realize a kiosk application. The web pages I'd like to browse are protected by .htaccess file.
So the first loading is ok when I enter the url…

David Espic
- 11
- 2
1
vote
1 answer
How to send commands to texts and buttons of webkit browser in VB.Net?
I have an application where I used WebBrowser to embed a browser. On a button click form my application I should navigate to a website (archive.org) and write a text into the browse history textbox (id = "wwmurl") of this website, then simulate the…

Saleem
- 709
- 2
- 13
- 34
1
vote
0 answers
AngularJS $http.delete somehow redirecting to GET method of REST API?
Here is where I am calling the method:
$http.delete(BaseUrl + '/conversations/' + $scope.conversation.id,{headers:reqHeaders}).
success(function(data,status){
$scope.wtf = data;
}).
error(function(err){
…

Jacob
- 505
- 3
- 8
- 23
1
vote
0 answers
VB.net autofill form using webkit.net
I've been trying to fill out web forms automatically using a custom made vb.net application, which has been working out perfectly fine for me.
When I went to try to do the same thing with a different website, which only supports IE9+, Chrome and…

Tarkan
- 541
- 1
- 4
- 27