c# - Why doesn't process run on ms server 2003 and iis6? -
i'm trying run process on ms server 2003 , iis 6, isn't avail.
process _process = new process(); _process.startinfo.filename = server.mappath("~/content/vtourpolygon/krpanotools/kmakemultires.exe"); _process.startinfo.useshellexecute = true; _process.startinfo.createnowindow = true; string templatepath = server.mappath("~/content/vtourpolygon/krpanotools/templates/normal.config"); string imagepath = server.mappath("~/content/vtourpolygon/image.jpg"); _process.startinfo.arguments = string.format("krpanotools makepano -config={0} {1}", templatepath, imagepath); _process.start(); _process.waitforexit();
what's problem
c# asp.net iis-6 windows-server-2003
No comments:
Post a Comment