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...................... Thanks in Advance
-
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...................... Thanks in Advance
Write the javascript to create the folder it will create on client side not on server side
-
Write the javascript to create the folder it will create on client side not on server side
I dont think that you can create a folder on client side using javascript. :) Regards, Suresh Dayma
Everything Is Possible!
-
I dont think that you can create a folder on client side using javascript. :) Regards, Suresh Dayma
Everything Is Possible!
Yes you are but i think we can create folder using Activex object
-
Yes you are but i think we can create folder using Activex object
-
yes by using activex objects in javascript you can probably create the folder on client side.
Best Regards, Apurva Kaushal
take a view of this code to create folder on client side using javascript function CreateFolder() { var myPath var oas = new ActiveXObject("Scripting.FileSystemObject"); myPath = "C:\\NUnit\\sandeep12345"; oas.CreateFolder(myPath); alert("Helo"); //insert_filename(fn); }