程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#技巧:網頁表單自動填寫技術(gmail為例)

C#技巧:網頁表單自動填寫技術(gmail為例)

編輯:關於C語言

var IE=WScript.createobject("InternetExplorer.Application");
var args = WScript.arguments;
var followme="
http://www.google.com/";
if(args.length>0)
{
    followme+=args(0);
}
IE.Navigate("
https://www.google.com/accounts/Login?continue="+followme);
SynchronizeIE();
var doc=IE.document;
doc.forms[0].Email.value="
[email protected]";
doc.forms[0].Passwd.value="密碼寫在這裡";
//這是因為PersistentCookIE這個checkbox有時候有而有時候沒有。
if(doc.forms[0].PersistentCookIE!=null)
{
    doc.forms[0].PersistentCookIE.checked=false;
}
doc.forms[0].submit();
SynchronizeIE();
IE.Visible=true;

//等待IE操作結束。
function SynchronizeIE()
{
    while(IE.Busy)
    {
          WScript.Sleep(100);
    }
}
      假定把該文件保存為googleSpecific.JS,存放在%windir%\system32路徑下,並建立如下內容的一個google.bat文件同樣放在%windir%\system32路徑下。

@cls

@wscript %windir%\system32\googleSpecific.JS  %1 %2 %3 %4 %5 %6 %7 %8 %9

 然後,在命令行執行語句:go mail,就可以直接登陸到你的gmail了。

同樣類似的命令還有:

Go notebook  à便簽簿

http://flappy.cnblogs.com/archive/2006/07/09/446673.Html

Go bookmarks à網絡收藏夾

如果直接輸入go而不接任何內容的話,則會以你的名義登陸到google.com首頁。另外,googleSpecific.js最好用screnc.exe進行加密,加密後的文件格式是.JSe,但即使是這樣也不能保證文件中的密碼不被別人看到(scrdec可以進行解密)。更好的保密手段還請各位多提意見。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved