string target = "http://www.xxx.com";
                try
                {
                    System.Diagnostics.Process.Start(target);
                }
                catch (System.ComponentModel.Win32Exception noBrowser)
                {
                    if (noBrowser.ErrorCode == -2147467259)
                        MessageBox.Show(noBrowser.Message);
                }
                catch (System.Exception other)
                {
                    MessageBox.Show(other.Message);
                }上面是使用默认浏览器打开一个页面:www.xxx.com。希望能实现自动填表的功能:
如:id="ID1"的输入框自动输入数据"111",id="ID2"自动获得输入焦点。
可以在网页后面加信息来实现吗?【www.xxx.com?......】这样子。