I want to download some files from Website URL
using SSIS package or c# code
But the problem is that website is buildup using flash and i need to login first then only I can go to homapage from where I need to download 4-开发者_如何学Python5 pdf files
please help ?
Have a look at this. How to make an HTTP request from SSIS? You need to use the exact PDF download url. As long as the file is not restricted by authentication, you should be able to download it.
To pass credentials, look at the Credentials property available in the namespace System.Net.WebClient
WebClient Class
WebClient.Credentials Property
精彩评论