如何从Asp.net运行Timer应用程序

时间:2014-04-06 08:56:38

标签: c# asp.net

我正在研究连接到网络的新功能但是在几次尝试失败之后,这个对网络的请求被锁定了,我需要等待15分钟。我有自己运行的计时器应用程序设置计时器并启动,但我想插入此设置并在我的代码中运行应用程序。

以前有人这样做过吗?设置计时器并自动运行Windows应用程序(任何)?

private bool TryToLogin()
{
    HttpWebRequest request = (HttpWebRequest)WebRequest.Create(loginPostUrl);
    LoginInfo = streamReadLogin.ReadToEnd();

    string postData = null;
    postData += "__REQUESTDIGEST=" + GetValueByID(LoginInfo);

    if (outString.IndexOf("User xxx") > -1)
    {
        throw new System.InvalidOperationException("User is all ready login");
        // here I need to run my windows application
    }

    connected = true;
}

1 个答案:

答案 0 :(得分:0)