c# - Command prompt do not show up -
possible duplicate:
command prompt not opens when calling (.exe) console application web application c#
i working console application in have not hidden command prompt. call application web application. when run web application in visual studio shows command prompt opened, when hosts web application on iis command prompt not show process running somewhere @ backend. can give idea why command prompt show when console application call iis
your web application isn't running in context of interactive user - it's running in context of windows service, typically doesn't, shouldn't , can't interact desktop. (you can allow services interact desktop, don't think should, @ least iis...)
Comments
Post a Comment