I am creating an application for online compilers. I have successfully created with C # .net and VB.net. But when I try to use C and C ++, I donβt know how to display errors on asp.net webpage.
Below is just an error, but not the error address in the code
Process proc = new Process(); proc.StartInfo.FileName = Session[batchPath].ToString(); proc.StartInfo.RedirectStandardError = true; proc.StartInfo.RedirectStandardOutput = true; proc.StartInfo.UseShellExecute = false; proc.Start();
Is it right, or should I make any changes? Thanks in advance.
source share