I have a site that has a csv feed updated everyday ...
I have a script that i use to parse the csv and update my database
each day . the problem is i must manually download the csv
and upload to my ftp server for the script to work ...
now im using :
$handle = fopen("DataFeed.csv", "r");i would like to be able to pull it directly like this
$handle = fopen("http://www.sitenamehere.com/Reseller/Feeds/GetDataFeed.asp?type=csv", "r");that way it could be run automated each night ....
the problem is the site requires me to login before i have access to the file download...
the site owner said something about :
so what you're basically looking for is
How to implement impersonation in an ASP.net application,
not sure what they was talking about ...
are there a way around this ?