1

我已经尝试了几个小时的解决方案......

我正在为 windowsphone 做一个应用程序,用于显示公共交通的详细信息。我需要更改 WhereFrom 和 WhereTo 的值,然后单击 tinyurl 网页中的提交,然后抓取信息。如果您可以推荐任何其他方式来做到这一点,请告诉它。我也尝试过 webclient、httpwebrequest,但它们的说明和示例对我来说太复杂了。

我坚持之前提到的错误和 selain.InvokeScript("eval"); 线导致它。更奇怪的是,我只在这个 tinyurl 网站上遇到了这个错误。例如,当使用 www.bing.com 站点时,我遇到另一个错误:80020101 使用第三个 Invokescript 行。

using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using System.Runtime.InteropServices; //COMException
namespace PhoneApp5
{

    public partial class MainPage : PhoneApplicationPage
    {

        // Constructor
        public MainPage()
        {

            InitializeComponent();
            //selain as WebBrowser. It's instanted in mainpage.xaml

            selain.IsScriptEnabled = true;

            selain.LoadCompleted += new System.Windows.Navigation.LoadCompletedEventHandler(selain_LoadCompleted);

            selain.Navigating +=new EventHandler<NavigatingEventArgs>(selain_Navigating);
            string osoite = "http://tinyurl.com/c7xel8s";
            //string osoite = "http://bing.fi";
            selain.Navigate(new Uri(osoite));

        }

        private void selain_Navigating(object sender, NavigatingEventArgs e)
        {

        }

        private void selain_LoadCompleted(object sender, System.Windows.Navigation.NavigationEventArgs e)
        {
            //Updates textblock in mainpage
            tekstiBlokki.Text = "READY";
        }


        private void button1_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                selain.InvokeScript("eval");
                selain.InvokeScript("eval", "document.getElementById('keya')");
                selain.InvokeScript("eval", "document.getElementById('sb_form_q').value = 'Roadname';");
                //selain.InvokeScript("eval", "document.getElementById('keyb').value=\"" + textBox2.Text + '\"');
            }
            catch (ObjectDisposedException)
            {
                MessageBox.Show("Selain ei ole enää toiminnassa");
            }
            catch (InvalidOperationException)
            {
                MessageBox.Show("Reference not found");
            }
            catch (COMException)
            {
                MessageBox.Show("Vastaavaa Jscript funktiota ei löydy");
            }

        }
    }
}
4

1 回答 1

-1

您正试图在所有页面中调用一个名为eval的脚本。第二个参数是eval函数的参数。很可能,页面上没有可用的eval函数,因此您会遇到异常。

在此处查看InvokeScript的文档。

于 2012-04-18T00:42:36.140 回答