This, when run from the "run" window , works properly.
cmd.exe /K mysqldump --add-drop-database --add-drop-table --user=root --password=thepassword --databases theDatabase > C:\Backup\theBackup.sql
However, the same command, when I try to execute from my web application by calling an external process, fails.
Here's the code:
ProcessStartInfo processInfo = new ProcessStartInfo("cmd.exe", @"/K mysqldump --add-drop-database --add-drop-table --user=root --password=thepassword --databases theDatabase > C:\Backup\theBackup" + ".sql");
Process p = Process.Start(processInfo);
This is what I get...

Interestingly, the file - theBackup.sql - gets created, but is empty.
It isn't an environment PATH variable problem; the MySql bin directory path, which contains mysqldump is added into the environment PATH variable. To check this, if I open the command prompt, navigate to the path mentioned in the screenshot above and type mysqldump command manually, it recognizes the command...as shown below...

The problem is mysqldump specific, since the following piece of code works
ProcessStartInfo processInfo = new ProcessStartInfo("cmd.exe", "/K ping stackoverflow.com");
What's wrong here?
