0
votes
3answers
19 views
which scenario in http transaction is occurred ?
In http transaction for request and response which scenario is occurred ?
client (web browser) open connection and send it's request and connection open (keep alive) until server …
1
vote
2answers
27 views
How to extract XML from WebBrowser?
I want the same as WebBrowser.Document.Body.InnerHtml, but as an XML representation.
-5
votes
2answers
164 views
Can you code a web browser in less that 30 lines of code? [closed]
I've seen some Python shoots, but no one is ready to run on the first try :)
0
votes
4answers
94 views
Automated web browser?
Hi,
For learning purposes I would like to automate some parts in a browser game, currently I am trying to fill out some simple text boxes, without any luck though. I've created a …
0
votes
3answers
42 views
Hiding browser address bar without reloading
I would like dynamically (via JavaScript) hide the address bar. I realize this can be done when opening a pop-up, but in this case I don't have the luxury (the file is being opened …
0
votes
1answer
21 views
InvokeMethod not working on windows form
I have a windows form containing a webbrowser that navigates to a site which sends data back in the form of a table. I would like to transfer the data on that table to a applicati …
1
vote
2answers
23 views
loading jQuery in webbrowser control from the filesystem
Here's my scenario:
I'm using the WebBrowser control in a WinForms app to display data. The HTML is served via the DocumentText property and I want to use jQuery to interact with …
0
votes
3answers
90 views
Submit file in form from C#
Hello,
I have a WinForms C# application. There is a WebBrowser control on the form named "browser".
Also I have following code:
HtmlDocument doc = browser.Document;
…
1
vote
3answers
46 views
C# - Associate a file type and open it within WebBrowser control?
How would I be able to open a file (lets say an .html file) and load it into the WebBrowser control on my WinForm application? I'm talking about right clicking on the file and cho …
0
votes
2answers
34 views
How to get the width and height in ActionScript for a Flex application running inside the flash player in the web browser
Hi all,
Does anyone know how to get the width and height in ActionScript for a Flex application running inside the flash player in the web browser.
e.g. In the web browser I can …
0
votes
4answers
108 views
C# - Uncheck a checkbox in webpage through WebBrowser control
Is there a way to uncheck/check a checkbox within a webpage that is loaded within a webbrowser control? Thank you.
Update: (This is what I originally tried with no luck)
HtmlDo …
0
votes
3answers
27 views
How to programatically click or invoke a javascript method using System.Windows.Forms.WebBrowser?
I tried with no success:
webBrowser1.Document.ExecCommand("alert('Hello World!')", true, null);
also tried:
private void webBrowser1_DocumentCompleted(object sender
, WebBr …
1
vote
3answers
101 views
How Internet Explorer Prepare Print Preview window
Hi All,
I am wondering how Internet Explorer, Mozilla Firefox or any other browser generate print preview window of an web page loaded into the browser.
The preview image will ha …
1
vote
4answers
60 views
Getting only the DIRECT InnerText of an IHTMLElement
Hi everyone.
Consider the following html code:
<div id='x'><div id='y'>Y content</div>X content</div>
I'd like to extract only the content of 'x'. Howeve …
0
votes
4answers
119 views
Extract a web document using c#
Hi
I am trying to get data from a web page using c#
So far this is my code:
WebBrowser wb = new WebBrowser();
wb.Url = new Uri("http://www.microsoft.com");
HtmlDocument doc = w …
