用C#将文本框TEXTBOX的值赋给网页控件webbower中的变量,再调用该网页中的函数

下面是我的WINFORM程序代码,想把TEXTBOX1、TEXTBOX2的值传给网页中的Lat、Long变量,并调用MoveMap2函数,请问有什么问题,本人初学,十分感谢
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace Google_Map
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
webBrowser1.Document.GetElementById("Lat").InnerText = textBox1.Text;
webBrowser1.Document.GetElementById("Long").InnerText = textBox2.Text;

}

private void button1_Click(object sender, EventArgs e)
{
double Lat = Double.Parse(this.textBox1.Text);
double Long = Double.Parse(this.textBox2.Text);

object oSum = webBrowser1.Document.InvokeScript("moveMap2", new object[] { Lat, Long });

}

}
}
我编译后点BUTTON地图没反应,是不是TEXTBOX没有输入到网页中,或是调用网页中函数的语句不对
在页面Request参数,页面控件中燃仿缓的大洞变量取值,先判断Request值是否存在,如果有就取得该值,然后在程序中用WebRequest对象来访问该页并传递TextBox的值皮模
看不出来有问题 要调试才可以
啊?额。。你到底要问什么呢?