Folder creation in client..
Hai,
I want to create a directory in the system localharddisk through my Web application(C# Asp.Net) . I used this coding inside the button click event.
System.IO.Directory.CreateDirectory("c:\\FolderName");
While running it creates a folder successfully in my system. When i try to run this same application from another system(client), the creation process is happening in server only. I want to create the folder in that particular systems harddisk(ie,client). In What way i can implement it... Give the solution.........
Thanks......................