这个,EASY,一行代码搞定
void Button1Click(object sender, EventArgs e)
{
this.webBrowser1.Document.Window.Frames[0].Document.GetElementsByTagName("TEXTAREA")[0].SetAttribute("value", "程序赋值结果");
}
用.aspx?content=XXX的形式来进行传值,在接收的网页使用Request.QueryString["content"]来接收它的值。