Problem visual basic 'exe' run on IIS through asp.net
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
I am developing asp.net application. i have a visual basic exe. when use this exe in asp.net. for the below code ------------------------------------- Process startinfo = new Process(); startinfo.EnableRaisingEvents = false; startinfo.StartInfo.FileName = Server.MapPath("~//FolderName\\RR.exe"); startinfo.Start(); -------------------------------------- it is succeffully runing. when my asp.net web application to run the IIS after publishing. Then that exe not running. Plz help me. what's probleam. I have been already full control that folder within store exe.