Integrating windows into web
is it possible to call or integrate the windows application into asp.net web application? is it yes then tell me how to do it
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
brunda kPosted May 19, 2012, 1:52 PM
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Process p = new Process();
p.StartInfo.FileName = "D:\\windowsapplication.exe";
p.Start();
}
}