1

我想从 Web 应用程序调用 Windows 应用程序。我试过下面的代码:

这里的“AppA_VB”是我正在运行的桌面应用程序。我有另一个网络应用程序,我在其中添加了桌面应用程序的引用。当我在本地电脑上运行网络应用程序时它工作正常,但不是在发布之后。

AppA_VB.Form1 appAform = new AppA_VB.Form1(); appAform.Show();

        var c = GetAll(appAform, typeof(System.Windows.Forms.TextBox));

        foreach (System.Windows.Forms.TextBox t in c)
        {
            if (t.TabIndex == 1)
            {
                t.Text = TxtName.Text;
            }
            if (t.TabIndex == 2)
            {
                t.Text = TxtAddress.Text;
            }

            if (t.TabIndex == 3)
            {
                t.Text = TxtStandards.Text;
            }
        }

        var b = GetAll(appAform, typeof(System.Windows.Forms.Button));

        foreach (System.Windows.Forms.Button btn in b)
        {
            if (btn.Text.ToString().ToLower() == "save")
            {
                btn.PerformClick();
            }
        }

我也试过这个,

System.Diagnostics.Process process1 = new System.Diagnostics.Process();

        process1.StartInfo.FileName = Convert.ToString(ConfigurationManager.AppSettings["ExePath"]);

        // Start the process 

        process1.Start();

发布后它也不起作用。

我在其中缺少什么。谢谢。

4

2 回答 2

0

它是(安装的应用程序文件夹)缺少正确的权限。我给了它,它工作正常。:)

于 2013-03-18T09:07:39.173 回答
0

您应该尝试 ClickOnce 部署,它允许您将基于 Windows 的应用程序发布到服务器。

试试这个:

System.Diagnostics.Process process1 = new System.Diagnostics.Process();
process1.StartInfo.FileName = Request.MApPath("yourFilePath.application");
process1.Start();
于 2013-05-26T03:57:59.037 回答