Hi,
I have an web application on server machine. I want to retrieve the client machine path.
In my application i have used following code for source and destination

string source1 = "c:\\inetpub\\wwwroot\\test\\Result\\";
string destination1 = Server.MapPath(".")+"\\upload\\";

But when i m accessing my application from client machine it is using the server path as source path.

Actually here what i m doing is, uploading files from client machine to server.
So when i m running the above code in server machine, it is working fine. But when i m using the same application from client machine then also it is using the server path as a source path. In my application, server and client machine has the same folder result.
I don't know where i am going wron.

Plz help me!!!!!