Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

Hi

 

In my program I used "webclient downloadfile" for downloading pdf files from a URL to my local machine.

 

Issue is while the downloading of files is in the process if I close the browser the downloading process is not stopping, can anyone please tell me how to stop downloading the files if I close the browser in middle of downloading process.

 

I used

WebClient myclient = new WebClient();

myclient.DownloadFile(src1, dest1);

 

at the end I used

myclient.dispose()

 

I also tried

using (WebClient myclient = new WebClient())

 

Please suggest me how to solve this issue.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...