我想从Web应用程序执行.exe文件 我使用以下代码
protected void btnImport_Click(object sender, EventArgs e)
{
Process p = new Process();
p.StartInfo.FileName = "c:\\backup_restore.exe";
p.Start();
}
但我得到%1不是有效的Win32应用程序错误 什么可以解决这个
我还在DefaultAppPool
中启用32位应用程序TRUE