HTMLElement到HTMLInputCheckBox

时间:2013-10-23 23:18:22

标签: c# webbrowser-control

在C#中使用WebBrowser时遇到问题。

以这种方式寻找对象“输入”

HtmlDocument sHTML = webBrowser.Document;
ObjElement HtmlElement;

ObjElement = sHTML.GetElementById (sValue);
if (objElement != null)
{
     ObjElement.SetAttribute ("value", sText);
}

但现在我需要使用复选框(HtmlInputCheckBox)

HtmlInputCheckBox OtherObjElement;

OtherObjElement = sHTML.GetElementById (sValue); <====== ERROR :(
if (OtherObjElement != null)
{
    if (!OtherObjElement.checked) OtherObjElement.click
}

如何在HtmlInputCheckBox中转换HTMLElement?

0 个答案:

没有答案