This is a discussion on Running DOS application without open Command window using C# .NET within the C# Programming forums, part of the Software Development category; Running DOS application without open Command window using C# .NET calling a dos exe from ASP.NET Goals: This project ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Running DOS application without open Command window using C# .NET calling a dos exe from ASP.NET Goals: This project is used to call dos exe from ASP.NET without opening any winodw or command prompt. Source: ProcessStartInfo startInfo = new ProcessStartInfo("Test.exe" + arguments); startInfo.CreateNoWindow = true; startInfo.WindowStyle = ProcessWindowStyle.Hidden; startInfo.UseShellExecute = false; proc.StartInfo = startInfo; proc.StartInfo.RedirectStandardInput = true; proc.StartInfo.RedirectStandardError = true; proc.StartInfo.RedirectStandardOutput = true; proc.Start(); |
| Sponsored Links |
![]() |
| Thread Tools | |
| Display Modes | |
| |
LinkBacks (?)
LinkBack to this Thread: http://www.discussweb.com/c-programming/1898-running-dos-application-without-open-command-window-using-c-net.html | |||
| Posted By | For | Type | Date |
| C# Programming [Archive] - DiscussWeb IT Community - Technical Support and Technology Discussions | This thread | Refback | 03-06-2008 09:21 AM |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| open a new window using php code | gk_cloud | PHP Programming | 3 | 03-26-2008 09:08 PM |
| Error: command line error MIDL1001 : cannot open input file wincodec.idl midl | Mramesh | C# Programming | 0 | 02-18-2008 11:07 PM |
| How to open popup onmouseover and to close the same window onmouseout javascript? | bluesky | HTML, CSS and Javascript Coding Techniques | 3 | 12-07-2007 06:51 AM |
| Running indifferent application domains | vigneshgets | C# Programming | 1 | 09-07-2007 06:58 AM |
| IE7: What is the Code open window in a ' | montyauto | HTML, CSS and Javascript Coding Techniques | 4 | 03-27-2007 11:07 AM |