基本信息
源码名称:验证码识别+投票程序+自动换代理ip+adsl自动拨号
源码大小:0.09M
文件格式:.rar
开发语言:C#
更新时间:2012-12-12
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
主要功能:某网站投票程序(含验证码识别、自动换ip、adsl自动拨号、自动清除cookie、
private void ReStartAdsl(bool reStartAdsl)
{
System.Diagnostics.ProcessStartInfo Info = new System.Diagnostics.ProcessStartInfo();
if(reStartAdsl)
Info.FileName = Application.StartupPath @"\Restart.bat";
else
Info.FileName = Application.StartupPath @"\ClearCookie.bat";
Info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
System.Diagnostics.Process.Start(Info); //启动
Update();
}
private void callVote()
{
string poststr = "";
int tmpInex=new Random().Next(100);
if ( tmpInex< PostArray.Length)
poststr = PostArray[tmpInex];
else
poststr = "";
int spantime = 0;
for (int i = 0; i < 5; i )
{
System.Diagnostics.ProcessStartInfo Info = new System.Diagnostics.ProcessStartInfo();
Info.FileName = Application.StartupPath @"\BallotAiying2.exe";
Info.Arguments = poststr;
if(checkBoxHide.Checked)
Info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
System.Diagnostics.Process.Start(Info); //启动
if (i < 4)
{
spantime = 5 - i;
System.Threading.Thread.Sleep(spantime * 1000);
}
}
}