0
votes
0answers
50 views

how to load html with javascript in wp8 web browser control?

I have web browser control in windows phone 8. i want to load html in my web browser control my html string is string htmlstring= " <html> <head> <title>Kayako ...
0
votes
0answers
26 views

Script errors while browsing websites using WebBrowser

I'm writing a simple web browser and I get some script errors the doesn't occur when I display those sites using IE9. I know how to suppress these errors but I want to prevent them. For example, ...
0
votes
1answer
66 views

Accordion menu in windows phone 8 by using webbrowser control

I am using the following HTML page to make an accordion control: <!DOCTYPE > <html > <head > <title></title> <script language="JavaScript" ...
0
votes
1answer
30 views

How to detect if there is running Javascript in an VB.NET WebBrowser-object

The situation: Using VB.NET Framework 3.5 and Visual Studio 2005 i crated a project which uses the WebBrowser object in a working thrat. Breaking it down to the very basics, it looks like: Dim ...
0
votes
0answers
47 views

Windows Phone how to detect scroll position of a browser control

I am developing a browser app for Windows Phone 8. I want to detect the scroll position, so that I can show the address bar only when user is at top of the page. I also want to restore the current ...
0
votes
0answers
35 views

sending data from custom webbrowser project to independently owned java script prompt for automation

This is my first time on stackoverflow as a questioner so here it goes. I am trying to implement a project for work that automatically updates a 3rd party website used to track inventory. I have ...
1
vote
1answer
64 views

Hide modal window generated by showModalDialog in WebBrowser

I have this page: <body> <script> function showModal() { // do some things here... var address = 'http://localhost:61948/modal.aspx'; ...
0
votes
1answer
127 views

How to increase or decrease web browser control font size using button?

Hi i am using web browser control.I have two button increase and decrease.I want to increase or decrease web view content My xaml code <phone:WebBrowser x:Name="Webbrowser" ...
0
votes
1answer
164 views

InvokeMember(“click”) in WebBrowser control

a website show a table based options to choose. Html is <td width="33%" class="cont"><input type="radio" name="gatewayIDV" onclick="setBank(11,0,1)"> <td width="33%" ...
0
votes
0answers
72 views

How do I prevent “Access Denied” response executing an ajax call from a Windows Forms WebBrowser control

I have a System.Windows.Forms.WebBrowser control that loads a web page. This web page has a button inside that triggers an ajax call to add more data to the web page. But every time the "xhr.open" ...
0
votes
1answer
158 views

Windows Phone WebBrowser - onClick javascript doesn't work

I have some problem with javascript while using WebBrowser control on WindowsPhone 7.8. When I'm using href="#" onClick method works fine, but when i change it to href="javascript:;" then onClick ...
1
vote
1answer
137 views

get javascript variable into webbrowser control winforms

I'm using a webbrowser control in visual studio 2010 to invoke JS script.I'm able to call a function from the web browser but i'm looking to get a varible value from JS and use it in the winform. I ...
0
votes
0answers
90 views

Detect if HTML page/javascript is loaded inside TWebbrowser/TEmbeddedWB

I have developed a sort of framework (without interface) in Delphi like phonegap but for Windows apps. The HTML-apps can run inside this, on the web and on several other platforms. For some existing ...
0
votes
1answer
186 views

Provide a VB6 object for window.external in a WebBrowser-hosted page

With the .NET WebBrowser control we can do: WebBrowser1.ObjectForScripting = new a_class(); where a_class is declared as [ComVisible(True)]. After which the instance of a_class is accessible to ...
0
votes
1answer
64 views

Is there a way to detect in browser if user clicked on “Save as” or bookmarked the page?

I am writing a browser data analyzer which detects user activities and sends to server. This way server can provide some personalization based on users interest. I am trying to intercept when user ...
1
vote
0answers
375 views

JavaScript not executing in .NET WebBrowser control

Two friends of mine have tested a project I have been working on which relies on the use of the WebBrowser control, and have managed to come across a constant scenario in which the WebBrowser control ...
0
votes
1answer
135 views

Make a web browser as modal popup window in my web site

Hi guys I just found out that it's possible to implement a draggable modal popup using web browser itself.that how tinymce and joomla and other popular frameworks use it. And my questions is how can ...
0
votes
0answers
45 views

WebBrowser Control is having a JS Error that IEX is not

I have a program that uses a web browser control. I've implemented the registry fix to force it to emulate IE9 (for windows 7). And it works on my machine just fine for what I need it to do. It also ...
0
votes
1answer
102 views

Cannot change VIDEO tag size via InvokeScript of WPF WebBrowser control

I do very simple thing: I need to change VIDEO tag size via InvokeScript of WPF WebBrowser control. So it shows "Hello" but size doesn't changes at all. Note: If i open this page directly it changes ...
0
votes
0answers
228 views

Open local html under WPF WebBrowser control

I have some simple html page that refers to jquery and others javascripts like: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; ...
-1
votes
1answer
286 views

Subscribe on callback function javascript in WebBrowser Windows Phone

I have component WebBrowser and javascript function start() with callback: function start() { my_object.subscribe("chanel_name", function(data) { alert(data); }); } ...
0
votes
1answer
68 views

Can JavaScript inserted into a Script string be called as normal by a WebBrowser object?

I may not be asking that question correctly but I have a WebBrowser that has pretty verbose script inside it. I'm using some string manipulation to insert my own JavaScript string into it (just a ...
1
vote
0answers
39 views

How do I hook a javascript function in C# Web Browser control? [duplicate]

Possible Duplicate: Invoke C# code from JavaScript in a Document in a WebBrowser Not sure that this would be possible with the WinForms browser control, but I would like to somehow setup a ...
1
vote
3answers
453 views

Can I use WebBrowser.Document.InvokeScript on a JavaScript function NOT defined in the header element?

I immediately apologize for any misnomers that I may use. I have a series of web pages that are generated by PHP that I am manipulating using the WebBrowser control. These pages have defined ...
1
vote
1answer
29 views

fire a Javasript function and receive it in WebBrowser

Is it possible (and if yes how) to fire a Javasript function and to receive it in WebBrowser? For example: I have a Website with Javascript and my Webbrowser source goes there. When I am executing ...
0
votes
0answers
76 views

Disable scripting in server-hosted System.Windows.Forms.WebBrowser control

Advanced print solutions for web applications seem to require server-side rendering to PDF. The IE-based System.Windows.Forms.WebBrowser can be used for part of the job by giving it HTML and getting ...
0
votes
3answers
146 views

C# Calling JS before page loads

Is it possible to call JS code before a page loads (or before other javascript code is called on the page)? For example: Using webbrowser control, I navigate to "http://google.com", but before any js ...
0
votes
0answers
61 views

Where does JS Navigator get it's information from?

I know this might sound like a silly question, but was wondering where javascript's navigator object got it's information from. Ex: navigator.AppName Trying to get the mobile version of a site using ...
0
votes
1answer
284 views

VB.net WebBrowser1 getting value from javascript on call

Hey all i have this javascript within my VB code that checks for if a player is paused or running: Dim isPlaying As String = ...
0
votes
0answers
95 views

Wrking with webBrowser control and Javascript

I have two problems, regarding working with Webbrowser. I have a list of web pages, of the same address but with changing parameter value. The page address is: ...
1
vote
1answer
141 views

How to get the hyperlink in a webpage written in JavaScript using a WebBrowser

webBrowser1.Navigate(myurl); HtmlElementCollection links = webBrowser1.Document.GetElementsByTagName("HTML"); foreach (HtmlElement link in links) { MessageBox.Show(link.InnerHtml); } I ...
0
votes
0answers
115 views

Greasemonkey scripts in a Windows Phone WebBrowser Control

I am trying to add additional functionality to a webBrowser control using some already written Greasemonkey scripts I have. Is there a way that I might integrate these into a webBrowser control on ...
2
votes
0answers
230 views

Handling back navigation in WebBrowser control preserving the previous scroll position

I know there a lot of questions asking about how to handle the back navigation in the WebBrowser control in WP7. And a lot of answers too, to achieve the same, using stacks, InvokeScript, etc.., and ...
1
vote
0answers
195 views

How do I get the WebBrowser in Windows Phone to navigate to a particular section of a webpage?

The web browser in Windows Phone 7.5 does not appear to recognise name or id anchors in a webpage, so for example navigating to glossary.html#myterm navigates to the top of the glossary.html page but ...
0
votes
1answer
85 views

Is it possible to invoke Windows Phone code (i.e. Launch WebBrowserTask) from inside a WebBrowser control?

I have some static webpages as part of my Windows Phone 7 app. It would be very useful however for links that refer to non-local sites on the web to be able to launch the web browser i.e. invoke the ...
3
votes
3answers
689 views

C# Pull a webpage with HTTPWebRequest and execute the javascript from the site

is there a way to fetch a webpage with HTTPWebRequest and then execute all the javascriptcode that was on the page along with ajax calls and save the result to a string? I want to parse a website ...
-1
votes
1answer
228 views

How can I fix script error in c# webbrowser? [closed]

I have searched for many hours to find out how to solve this problem. All I can find is how to suppress javascript errors with c#. The thing is, the webbrowser doesn't seem to run the javascript. I ...
5
votes
1answer
362 views

Getting return value from Javascript in C# Webbrowser control WPF

I made JavaScript injection into WebBrowser control in C# (System.Windows.Controls.WebBrowser) such that, <C#> IHTMLDocument2 webdoc = (IHTMLDocument2)webBrowser1.Document; string var = ...
0
votes
1answer
86 views

how to enable javascript in winforms application?

how to enable javascript in winforms application? I am using web browser control and i want to check if javascript disable on browser than i want to enable into my win application. Please help me. it ...
2
votes
4answers
173 views

Detect the refferal/s of Url/s using JavaScript or PHP from inside a Bookmarklet

Let's think out of the box ! Without any programming skills, how can you say/detect if you are on a web page that lists products, and not on the page that prints specific details of a product ? The ...
3
votes
2answers
334 views

c# access dom javascript generated form

am loading a webpage using the webbrowser control, in it there is a form that is generateb by javascript. when i tried to access th elements in c#, they cannot be found. the page renders well in a ...
1
vote
3answers
70 views

Completely linkable li element

I need to make linkable an entire <li> or <tr> element, someone suggest me to use javascript, with an onclick action. function doNav(url) { document.location.href = url; ...
-1
votes
1answer
82 views

Debug JavaScript code in vs.net 2010

I have a win-form Application with a web browser control. i use a JavaScript code in this web browser.but some times my JavaScript code return error I want to know is it possible to debug ...
0
votes
2answers
280 views

Webbrowser.Document.InvokeScript() don't work in IE9

i trying to call a javascript function with below code Webbrowser.Document.InvokeScript("something") it's work in IE8,but not work in IE9. Anybody has any suggestion for me?
0
votes
2answers
151 views

How do I follow a Javascript Link without onClick

This is my first time posting. I've been working on a "web scraper" to navigate through a website and download an Excel File or .CSV file automatically. I'm running into a problem when I want to ...
0
votes
1answer
106 views

JavaScript generated web page issue

I have a problem with javascript generated web page. I have a web page on the internet that is generated by javascript. I am working on changing a web page using wpf web browser control. I have to ...
2
votes
2answers
129 views

How do I reload an <img/>?

I have a WebBrowser control on an WPF page. The HTML page loaded into the WebBrowser control displays images for the WPF application. I have a JavaScript callback from the WPF page into the HTML ...
-2
votes
1answer
738 views

Run Javascript code on webbrowser website

What I have is simple, a form with in that form a webbrowser-controll. That webbrowser goes to a website. And that all works. But what I wan't to do when he's on the page is to let him run some ...
0
votes
1answer
92 views

How to get time counter from this web link to C# from

http://www.tumangobajito.com/auctions/Blackberry-9360-Blanco-484 I have used WebBrowser control to navigate this link, but there is javascript error, so I cannot see the timer working. Is there ...
2
votes
1answer
1k views

WebBrowser Control - Invoke Script Problems with JavaScript Button

I am trying to login to a website. I am able to fill out the form correctly with all of the connection information, but I cannot get the page to login. The button is a link without a name or id, so ...

1 2 3 4