-
大小: 0.01M文件類型: .rar金幣: 1下載: 0 次發布日期: 2020-12-26
- 語言: C#
- 標簽: WebBrowser??模擬??上傳??
資源簡介
實現了模擬按鍵與選擇文件等功能,詳細實現見壓縮包
對于IE7及以下,可以簡單的利用SendKeys.SendWait方法設置input值,當然首先要將焦點集中在該控件上,利用HtmlElement的focus方法很容易做到。具體可以看后面的代碼。但是對于IE8來說,它的安全性更高,具體參看文章http://blogs.msdn.com/ie/archive/2008/07/02/ie8-security-part-v-comprehensive-protection.aspx。
對于IE8來說,file input只能模擬點擊upload按鈕,然后在彈出的對話框中輸入文件名,然后點擊確定。
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;
using?System.Threading;
using?System.IO;
namespace?BatchShowMyCode
{
????public?partial?class?Form1?:?Form
????{
????????private?HtmlElement?htmlForm?htmlUpload?htmlCode;
????????//Uri?url?=?new?Uri(“file:///D:/Apache2.2/htdocs/task/upload.html“);????
????????Uri?url?=?new?Uri(“http://www.showmycode.com/“);
????????
????????public?Form1()
????????{
????????????InitializeComponent();????????????
????????????this.webBrowser1.scriptErrorsSuppressed?=?true;
????????????this.webBrowser1.Url?=?url;
????????????this.webBrowser1.DocumentCompleted?+=?new?WebBrowserDocumentCompletedEventHandl
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????3741??2009-09-03?00:31??BatchShowMyCode\BatchShowMyCode.csproj
?????文件???????9765??2009-09-05?19:10??BatchShowMyCode\Form1.cs
?????文件???????5835??2009-09-03?08:16??BatchShowMyCode\Form1.Designer.cs
?????文件???????5814??2009-09-03?08:16??BatchShowMyCode\Form1.resx
?????文件????????507??2009-09-03?00:23??BatchShowMyCode\Program.cs
?????文件???????1442??2009-09-03?00:23??BatchShowMyCode\Properties\AssemblyInfo.cs
?????文件???????2859??2009-09-03?00:23??BatchShowMyCode\Properties\Resources.Designer.cs
?????文件???????5612??2009-09-03?00:23??BatchShowMyCode\Properties\Resources.resx
?????文件???????1100??2009-09-03?00:23??BatchShowMyCode\Properties\Settings.Designer.cs
?????文件????????249??2009-09-03?00:23??BatchShowMyCode\Properties\Settings.settings
?????目錄??????????0??2009-09-03?00:23??BatchShowMyCode\Properties
?????目錄??????????0??2009-09-05?19:10??BatchShowMyCode
-----------?---------??----------?-----??----
????????????????36924????????????????????12
評論
共有 條評論