hello everybody


i have a asp.net web application running on my IIS server.now when a client machine on the local network connects to the server and tries to download a file the file gets downloaded on the server instead of the client mahcine.on my server i have the following code for downloading file

imports System.net

dim wc as webclient
wc=new webclient
wc.downloadfile("http:\\localhost\Download\test.txt","c:\test.txt")

i want the test.txt to be saved on the c: drive of client machine however right now it is getting saved on the server.plz tell me how do i sort this out.

thanx
parth