Last active
August 29, 2015 13:57
-
-
Save nisar1/9911224 to your computer and use it in GitHub Desktop.
call console application form asp.net
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//call console application form asp.net | |
//------------------------------------- | |
string path = HttpContext.Current.Server.MapPath("~/bin/txtProcessor.exe"); | |
ProcessStartInfo info = new ProcessStartInfo(path,""); | |
Process p = new Process(); | |
info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; | |
p.StartInfo = info; | |
p.Start(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment