Tagged Questions
5
votes
2answers
247 views
Any workaround to get text in an iFrame on another domain in a WebBrowser?
You will probably first think is not possible because of XSS restrictions. But I'm trying to access this content from an application that hosts a WebBrowser, not from javascript code in a site.
I ...
3
votes
4answers
91 views
Identify all open System/Special Folders
I am currently using the following to Get Path of all Open Explorer Windows:
foreach (SHDocVw.InternetExplorer j in new SHDocVw.ShellWindows()) {
if (j.Name == "Windows Explorer") {
...
1
vote
1answer
412 views
Error using interop.Shdocvw
I was trying to connect to web browser control but it continuously threw exception that iwebbrowser2 should implement iwebbrowser2 something like this ,then i googled and found solution to this ...
1
vote
1answer
1k views
IWebBrowserApp.Navigate() How to send Post Data
I would be very glad if someone could show me a good example of how to send POST data with the Navigate Method, available through SHDocVw.IWebBrowserApp.
Considering for example.
That the page were ...
1
vote
4answers
513 views
WebBrowser control
Ok, so here's the deal -- I'm running a Windows Forms WebBrowser control from a service. I know thats a no-no, but it seems to work alright.
The only thing I'm running into a problem with is trying ...
1
vote
2answers
2k views
c# using SHDocVw.InternetExplorer. How can I find the URL of the last link clicked? Or the most recent get request URL?
I am accessing the SHDocVw.InternetExplorer from the SHDocVw.ShellWindowsClass(). I can see the page that the browser instance is currently on (the LocationURL property), but what I really need is ...
0
votes
2answers
157 views
Active tab ignored by InternetExplorer COM object for IE 8
This is web single sign on code that runs on a .net 3.5 winform. The code runs fine for ie6 or ie8 as long as ie8 only has one tab open. The problem is that if the user opens a new tab (tab 2,3,etc.) ...
0
votes
2answers
100 views
how to click this javascript button?
In the middle of a webpage I am trying to log into I have the following code
<tr>
<td colspan="2" align="center"><!--mstheme--><font face="Trebuchet MS, Arial, ...
0
votes
1answer
58 views
Can't use “apply” or “call” functions more than once
I'm using the SHDocVw DLL to open and manipulate an Internet Explorer instance from C#. I need to activate the onkeyup event of several textboxes. This is the code I use:
dynamic ...
0
votes
1answer
235 views
How to send a cookie in a POST using SHDocVw.InternetExplorer.Navigate?
Problem:
In our organization we have a home grown single-sign-on app written in c#/.Net2 that has been working for years. We recently found that the app doesn’t work with Outlook Web Access 2010. A ...
0
votes
0answers
50 views
webbrowser control and resources downloaded
I want any event in web browser contorl that would raise once all the resources of a page are been donwloaded.
In my case, the page has nested iFrame so i would like to get resources download ...
0
votes
1answer
444 views
InternetExplorer being set up as __ComObject instead of SHDocVw.InternetExplorer
I'm having a problem with the InternetExplorer in SHDocVw.dll. I also have mshtml.tlb referenced (while googling, I did read 1 comment that said I should have mshtml.dll referenced, but that this ...
0
votes
1answer
402 views
clear browser session and cookies using c#
Hi I've created a new browser object by using
InternetExplorer myie = new SHDocVw.InternetExplorer();
and I'm trying to navigate to one page some thing like
...
0
votes
2answers
824 views
SHDocVw.WebBrowserClass register to refresh event
is there a way to know when the user perform refresh to the page using the
SHDocVw.WebBrowserClass of ie using C#