I have one web application in which I am calling one window application.
When I call that win app, it runs in background means it shows only in task manager but does not show any window of that application.
I have searched for this on MSDN support and do as directed, but nothing result.
protected void Page_Load(object sender, EventArgs e)
{
string str = @"D:\GSDP\scan.exe";
Process process = new Process();
process.StartInfo.FileName = str;
process.Start();
}
this scan aaplication is run in only background in task manager, no any window displayed