如果你或你的客户不使用窗户提出申请,你可以增加网络浏览器控制,然后将其点到第三方网络应用。 然后,你可以尝试通过<代码>查阅网页的内容(如形式领域)。 文件编码>控制的财产。 虽然我不敢肯定你是否能够获得具体的实地价值观。
Edit
I was able to do this with what I said. I created a windows forms application, added a webbrowser control (webBrowser1
) and then loaded this html into it (with proper <html>, <head> tags and the like):
<form id="form1" method="post" action="test.htm">
<input type="text" id="testText" name="testText" />
<br />
<input type="submit" value="Save" />
</form>
注:我这样做是因为在一份html的档案中加以保留,并使用webBrowser1.Url = 新的Uri(@”c:t.htm”;
,载于我的<编码>Form_Load活动。
随后,我得以通过下列方式进入testText
:
HtmlDocument doc = webBrowser1.Document; //Gets the html document
HtmlElement elem = doc.Body.All["testText"]; //Gets the input element
MessageBox.Show(elem.GetAttribute("value")); //Gets the value attribute
我希望这能帮助你。