我有一个c#app,我尝试过使用一些mshtml元素。但我有一个问题。 using mshtml;
命名空间给我一个错误是Visual Studio 2012。
这是我的源代码,
namespace Tagger
{
using mshtml;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using System.Text;
public class HTMLForm
{
private string _action = "";
private string _method = "";
public Hashtable Inputs = new Hashtable();
public HTMLForm(IHTMLFormElement element)
{
this._method = element.method;
this._action = element.action;
foreach (IHTMLInputElement element2 in (IHTMLElementCollection) element.tags("input"))
{
try
{
string name = element2.name;
string str2 = element2.value;
if (name == null)
{
name = element2.type;
}
this.Inputs.Add(name, str2);
}
catch
{
}
}
}
public static HTMLForm[] GetAllForms(string html)
{
List<HTMLForm> list = new List<HTMLForm>();
HTMLDocument document = (HTMLDocument) Activator.CreateInstance(Type.GetTypeFromCLSID(new Guid("25336920-03F9-11CF-8FD0-00AA00686F13")));
document.write(new object[] { html });
document.close();
foreach (IHTMLFormElement element in document.forms)
{
list.Add(new HTMLForm(element));
}
return list.ToArray();
}
public static HTMLForm GetFormByAction(string html, string action)
{
foreach (HTMLForm form in GetAllForms(html))
{
if (form.Action.ToLower() == action.ToLower())
{
return form;
}
}
return null;
}
public string ToPostData()
{
StringBuilder builder = new StringBuilder();
foreach (string str in this.Inputs.Keys)
{
object obj2 = this.Inputs[str];
string str2 = (obj2 == null) ? "" : obj2.ToString();
builder.AppendFormat("{0}={1}&", HTTPBase.encode(str), HTTPBase.encode(str2));
}
if (builder.Length > 1)
{
return builder.ToString().Substring(0, builder.Length - 1);
}
return "";
}
public string Action
{
get
{
return this._action;
}
set
{
this._action = value;
}
}
public string Method
{
get
{
return this._method;
}
set
{
this._method = value;
}
}
}
}
但我不能使用htmlelement,IHTMLElementCollection的功能。编译器给我一个错误。
错误1类型或命名空间名称&#39; mshtml&#39;无法找到(是 你错过了使用指令或程序集引用?)
Error 5 The type or namespace name 'HTMLDocument' could not be found (are
你错过了使用指令或汇编引用?
错误2类型或命名空间名称&#39; IHTMLFormElement&#39;找不到(是你吗? 缺少using指令或程序集引用?)
错误3类型或命名空间名称&#39; IHTMLElementCollection&#39;找不到(你错过了使用指令或汇编引用吗?)
错误4类型或命名空间名称&#39; HTMLDocument&#39;找不到(你错过了使用指令或汇编引用吗?)
答案 0 :(得分:32)
右键点击References
项目中的Solution Explorer
。然后点击Add Reference...
。在Assemblies
中输入搜索&#39; HTML&#39;你会看到Microsoft.mshtml
。将其添加到您的项目中,您可以使用HTMLDocument。祝你好运
答案 1 :(得分:15)
Microsoft.mshtml位于Reference Manager的COM选项卡中,它名为&#34; Microsoft HTML Object Library&#34;。
答案 2 :(得分:0)
我想补充一点,我们遇到了多次问题,所需的名称空间从mshtml切换到MSHTML,然后再返回。因此,即使您添加了引用并且看起来一切正常,也请检查名称空间是否由于更新的库而发生了更改。
答案 3 :(得分:-1)
mshtml 更改为 MSHTML。 所以在你这样做之后:
“Microsoft.mshtml 位于参考管理器的 COM 选项卡中,它被命名为“Microsoft HTML 对象库”。”
将代码中的 mshtml 更改为 MSHTML。