tags:

views:

38

answers:

2

Hi! I have deploy the dropthings source code into my iis, and in its code, the author used WebClient in a web service to DownloadString, but it threw an exception, but if i deploy my code into visual studio asp.net develepment server ,WebClient went fine. I think I have encountered some authorize problem~~~ Please tell me how to configure iis? i use iis 7

A: 

just this

WebClient client = new WebClient(); client.DownloadString(....);

Martin Luo
A: 

Get a tracelog for your application. See instructions at http://ferozedaud.blogspot.com/2009/08/tracing-with-systemnet.html This will help you figure out why your solution is not working.

feroze