Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I want to open a folder ( this folder contains sub folders also) on button_click in asp.net
I used the following code earlier but after deployment its not working
System.diagnostics.process.start("explorer.exe","path")


Can we open a folder without using process.start?????

Thanks,
Thirupathi Reddy
Posted
Updated 3-May-11 21:08pm
v3

try This
//if you are using C# 
 System.Diagnostics.Process.Start(@"C:\Documents and Settings");

//for vb.net 

AddressOf System.Diagnostics.Process.Start
 
Share this answer
 
v3
Comments
Donthi Thirupathi Reddy 4-May-11 2:44am    
Earlier i used that code but after deployement its not working on the server
try these links also

Clickhere[^]

Click[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900