发生了system.nullreferenceexception类型的未处理异常

时间:2014-02-28 13:21:03

标签: c# web

我收到此错误:an unhandled exception of type 'system.nullreferenceexception' occurred

我试图为某些网站构建一个自动更新程序.. 这个网站没有使用java脚本的Form标签。 代码需要做什么才能自动进入网站。

在此代码中:

HtmlElementCollection elc = webBrowser1.Document.GetElementsByTagName("input");
            foreach (HtmlElement el in elc)
            {
                if (el.GetAttribute("type").Equals("button"))
                {
                    el.InvokeMember("Click");
                }
                if (el.GetAttribute("type").Equals("text"))
                {
                    el.SetAttribute("value", textBox2.Text);
                }
                if (el.GetAttribute("type").Equals("password"))
                {
                    el.SetAttribute("value", BaseString + Match[Count]);
                }
            }

我需要做什么? 感谢

0 个答案:

没有答案