Using Python Scripts with IIS - ASP or Python-based CGI scripts with IIS - which makes more sense?

2008-06-27 Thread davidj411
when does is make sense to use a ASP style Page (.psp) over a Python- based CGI script with IIS. ? http://support.microsoft.com/kb/276494 ASP requires registering the python engine. which has better performance? The ASP style uses a new part of the python language which is unfamiliar to me, e.g.

Re: python scripts with IIS

2008-01-19 Thread william paul
Thank you, William - Original Message From: Rolf van de Krol <[EMAIL PROTECTED]> To: python-list@python.org Sent: Saturday, January 19, 2008 5:33:59 PM Subject: Re: python scripts with IIS Adding the following lines before your print statement should do the trick. IIS complains

Re: python scripts with IIS

2008-01-19 Thread Rolf van de Krol
gt; > Hello: > > I am trying to configure IIS to work with Python scripts: > > I've added in the Home Directory/Configuration the .py extention and > the path to the python.exe as: c:\Python24\python.exe %S %S > The python script has 1 line: > print "This is a

python scripts with IIS

2008-01-19 Thread william paul
Hello: I am trying to configure IIS to work with Python scripts: I've added in the Home Directory/Configuration the .py extention and the path to the python.exe as: c:\Python24\python.exe %S %S The python script has 1 line: print "This is a test for python scripts with IIS"