Example #1
0
        private void UpdateStupidData()
        {
            Status("Obtaining view state and event validation strings from DDI...");
            DisableAll();
            CustomWebClient client = new CustomWebClient();

            client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(DownloadCompleted_StupidData);
            client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(DownloadProgressChanged);
            client.DownloadStringAsync(new Uri(URL_LOGIN));
        }
 private void UpdateStupidData()
 {
     Status("Obtaining view state and event validation strings from DDI...");
     DisableAll();
     CustomWebClient client = new CustomWebClient();
     client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(DownloadCompleted_StupidData);
     client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(DownloadProgressChanged);
     client.DownloadStringAsync(new Uri(URL_LOGIN));
 }