T
topgene
question describe:
i used C# write the follow method:
--------------------------------------------------------------------------------
public static void GetMp3FileFromAudio(string ExeFilePath,string
AudioFilePath, string SaveFilePath)
{
System.Diagnostics.ProcessStartInfo ps = new
System.Diagnostics.ProcessStartInfo(ExeFilePath);
ps.WindowStyle =
System.Diagnostics.ProcessWindowStyle.Hidden;
ps.Arguments = "-i " + AudioFilePath.Replace(@"\\", @"\") +
" " + SaveFilePath.Replace(@"\\", @"\");
System.Diagnostics.Process.Start(ps);
}
---------------------------------------------------------------
it's worked normal in the vs2005's default web server.but in the iis
environment,it's return a error: Win32Exception (0x80004005): can't
find the files.
the parameter ExeFilePath is a net-share file.and AudioFilePath is a
net share path.
can u tell me how to setup the iis to use the page normal?
thanks adv.
i used C# write the follow method:
--------------------------------------------------------------------------------
public static void GetMp3FileFromAudio(string ExeFilePath,string
AudioFilePath, string SaveFilePath)
{
System.Diagnostics.ProcessStartInfo ps = new
System.Diagnostics.ProcessStartInfo(ExeFilePath);
ps.WindowStyle =
System.Diagnostics.ProcessWindowStyle.Hidden;
ps.Arguments = "-i " + AudioFilePath.Replace(@"\\", @"\") +
" " + SaveFilePath.Replace(@"\\", @"\");
System.Diagnostics.Process.Start(ps);
}
---------------------------------------------------------------
it's worked normal in the vs2005's default web server.but in the iis
environment,it's return a error: Win32Exception (0x80004005): can't
find the files.
the parameter ExeFilePath is a net-share file.and AudioFilePath is a
net share path.
can u tell me how to setup the iis to use the page normal?
thanks adv.