- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个 C# 应用程序,我尝试使用一些 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 的功能。编译器给我一个错误。
Error 1 The type or namespace name 'mshtml' could not be found (are you missing a using directive or an assembly reference?)
Error 5 The type or namespace name 'HTMLDocument' could not be found (are
you missing a using directive or an assembly reference?
Error 2 The type or namespace name 'IHTMLFormElement' could not be found (are you missing a using directive or an assembly reference?)
Error 3 The type or namespace name 'IHTMLElementCollection' could not be found (are you missing a using directive or an assembly reference?)
Error 4 The type or namespace name 'HTMLDocument' could not be found (are you missing a using directive or an assembly reference?)
最佳答案
在 Solution Explorer
中右键单击项目中的 References
。然后单击 Add Reference...
。在 Assemblies
中搜索“HTML”,您将看到 Microsoft.mshtml
。将它添加到您的项目中,您就可以使用 HTMLDocument。祝你好运
关于c# - 使用 mshtml 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22717704/
在我的应用程序中,我有一个嵌入式 MSHTML 控件。问题是我无法将焦点设置到此控件。我可以单击、选择、按下按钮等,但它不会因此接受键盘输入和鼠标滚轮通知。即使在控件上单击鼠标左键也不会设置焦点。 (
我在 Windows 7 中使用 IE11。然后我在 C# 项目 c:\Windows\System32\mshtml.tld 中添加了一个引用并尝试获取 mshtml.IHTMLDocument6
我在将 mshtml.HTMLDocumentClass 转换为 mshtml.IMarkupServices 时遇到问题 IHTMLDocument2 doc = new HTMLDocumentC
我有点困惑,也许你可以帮助我。 我有 mshtml.dll(8.0 版)和 Microsoft.mshtml.dll(7.0 版) 如果我添加对 WPF 项目的引用并尝试添加 mshtml.dll,它
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我需要在 Windows 10(最新版本)下使用 VS2017 构建旧的 .NET 项目的小帮助。 我的问题是我需要以某种方式引用的“MSHTML”组件。通过 References - Add - C
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
目前,我正在使用 MSHTML 组件将 HTML 编辑器嵌入到 C++ WinAPI 应用程序中。 我已设置好所有内容(激活编辑模式、更改字体等),但现在我必须支持插入图像。 MSHTML 已经内置了
我们在 Delphi 中使用标准 TWebbrowser 组件,该组件在内部使用 mshtml.dll。另外,我们使用注册表来确保页面使用新的渲染引擎( Web-Browser-Control-Spe
我有一个使用 WatiN 的 C# 程序。它在我的开发 Windows 7 中编译并运行良好。但是,当我将程序复制到 Azure 中的 Windows 2012 数据中心时,当应用程序尝试启动 Int
我有一个使用 WatiN 的 C# 程序。它在我的开发 Windows 7 中编译并运行良好。但是,当我将程序复制到 Azure 中的 Windows 2012 数据中心时,当应用程序尝试启动 Int
我有一个 Haskell 库,它可以获取一个普通的 Web 应用程序,在本地服务器上运行它,然后使用 QtWebkit 打开一个显示该应用程序的窗口。 code to interface with Q
我在 mshtml.IHTMLElement 对象中有一个 DOM 元素(引用 here)。我想通过转到该元素的父元素然后转到该元素的下一个兄弟元素然后获取该元素的第二个子元素来获取“可导航到”的 D
我正在使用 axWebBrowser,我需要制作一个脚本,该脚本在列表框的选定项目发生更改时起作用。 在默认的 webBrowser 控件中,有一个类似的方法; WebBrowserEx1.Docum
我正忙于用 C# 编写 BHO(浏览器帮助程序对象),我需要将事件处理程序附加到输入元素上的所有 onclick 事件。我没有使用 visual studio 提供的内置网络浏览器,而是启动安装在客户
我想使用 MSHTML 将用户焦点设置在一个文本元素上,到目前为止我已经给出并尝试过的方法都不起作用。 CComPtr field; field->put_value( .. ); // I hav
我们的应用程序使用的是 mshtml。由于 mshtml 中众所周知的问题,该 dll 导致我们的应用程序无法正常退出,因为我们没有在用户的机器上安装更新的浏览器。我们只是使用他们已有的东西。 Set
我在应用程序中嵌入了一个基于 MSHTML 的控件,ContentEditable 模式用于编辑其中的文档。 HTML 文档的主体最初包含以下几行: 插入符号位于文档的开头,即第一个 DIV 元素
我在使用 MSHTML 从该网站截取一些数据时遇到问题组件。我的 WPF 窗体上有一个 WebBrowser 控件。我检索 HMTL 元素的代码位于 WebBrowser LoadCompleted
我正在使用 MSHTML API来自 C# 4.0 和运行代码的逻辑不是问题。然而,由于 MSHTML 和/或 COM 接口(interface)的设计方式,编写代码是一件很痛苦的事情。具体来说,应该
我是一名优秀的程序员,十分优秀!