Click here to Skip to main content
15,897,226 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
VB
Dim proProcess As Process
      Dim inStartInfo As New ProcessStartInfo
      inStartInfo.WindowStyle = ProcessWindowStyle.Normal
      'inStartInfo.FileName = Server.MapPath("Docs") & "\" & fileName5
      inStartInfo.FileName = "C:\inetpub"
      inStartInfo.Arguments = String.Empty
      proProcess = Process.Start(inStartInfo)


the above i had written in my asp project.
in source code it is working but in iis it is not working..

in iis application pool default pool.. process model
at identity column i made to local system
and
while adding virtual directory i added connect as i added one user i.e system userid and pwd but still all so not working..
any soulution
Posted

Yes, it is.

But...it is working on the server, not the client. All VB code is executed on the server, so the Process.Start call opens a new window on the server, where the client can't see it.

You cannot open a window on the client to view the file tree, either of the client or of the server.
 
Share this answer
 
hi, thanks for your reply
may i know how can i solve this one..
 
Share this answer
 

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

  Print Answers RSS
Top Experts
Last 24hrsThis month


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