I want to execute .exe file from the web application i use the following code
protected void btnImport_Click(object sender, EventArgs e)
{
Process p = new Process();
p.StartInfo.FileName = "c:\\backup_restore.exe";
p.Start();
}
but i get %1 is not a valid Win32 application error what could be solution for this
I have also make Enable 32-bit Application TRUE in DefaultAppPool