我的应用程序有一个web浏览器控件,可以在大多数网站上正常使用,但是在播放MP3时遇到了麻烦。
下面的代码将URL发送到我的WebBrowser控件webViewer。常规页面有效,但this之类的页面不起作用,导致浏览器显示带有" x"的白页。显示在左上角的图像中。该页面在Internet Explorer中正确加载并显示播放该文件的QuickTime播放器。
Private Sub NavigateTo(ByVal webAddress As String)
Try
If String.IsNullOrEmpty(webAddress.Trim()) Then
MsgBox("This link is under construction...")
Return
Else
If webAddress.Contains("http://") = False Then webAddress = "http://" & webAddress
Dim navPage As New Uri(webAddress)
webViewer.Source = navPage
End If
Catch ex As Exception
MsgBox("The URL for this button is invalid. Please contact AzTech IT for help.", MsgBoxStyle.OkOnly, "Satellite Tablet Application")
ErrorHandler.Helpers.LogMessage(ex.Message)
End Try
End Sub
此问题是否有解决方法?