Java Scrip Error when using web browser

amoori

New member
Joined
May 4, 2009
Messages
2
Programming Experience
1-3
Hi, Guys!
This is my second Thread here.
Actually i created a simple web browser in vb.net, whenever i visit youtube... For example any channel in youtube like " YouTube - bob13's Channel " it shows me a script error that says the following:

An error as occurred in the scripting on this page.
line:456
Char:3
Error:'csiOnLoad' is undefined
code:0
URL: YouTube - bob13's Channel

do you want to continue running script on this page ! yes or no

this is the error message, i don't understand why does this happen.
What should i do to avoid this error, i don't want to see it.

This is the code i used on my application.
PHP:
 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        WebBrowser1.Navigate("www.youtube.com/bob13")
    End Sub
 
Back
Top