Webbrowser control doesn't work when opening page "http://photos.weirwindle.org[^]". The problem is: after page is opened, user can click 'start', 'next' or 'previous' only once, after one click, these buttons are disabled!!! I guess there is something wrong with browser configuration, but both internet explorer and firefox can open this page correctly. I can't figured out this problem for a long while... I pasted some code on my test application, one textbox, one button and one webbrowser: private void Form1_Load(object sender, EventArgs e) { string url = "http://photos.weirwindle.org"; txtAddress.Text = url; //webBrowser1.Navigate(url); } private void btnGo_Click(object sender, EventArgs e) { webBrowser1.Navigate(txtAddress.Text); }
D
daveice
@daveice
Posts
-
webbrowser and autoviewer -
How to make screen become gray/dark slowly?For a WinForm application using C#, how to make the form become gray/dark slowly when pop up a dialog? Like XP does when user is going to shut down computer. Thanks in advance.
-
An existing connection was forcibly closed by the remote host? [modified]I got exactly the same problem. this app used to works well....
-
Can WinForm app use Flash as background?But how can I draw some text and image above webbrowser?
-
Can WinForm app use Flash as background?I want to use dynamic background in my winform app, I used GIF image now, it looks not so good, can I use a flash as background? how? In my opinon, I need to use "AxShockwaveFlash" to play the flash, this object is not under control of my app, so I can't draw on it...