command prompt do not opens up when calling (.exe) console application from web application c#

前端 未结 2 1365
情歌与酒
情歌与酒 2021-01-27 15:50

i am using this function from my web application to call exe file . when it calls .exe file every thing happens accurately, i can see it as running process in task manager proce

2条回答
  •  遇见更好的自我
    2021-01-27 16:24

    Have you tried setting the window style to Maximized?

    ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
    startInfo.WindowStyle = ProcessWindowStyle.Maximized;
    Process.Start(startInfo);
    

提交回复
热议问题