home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC User 2004 November
/
PCU1104CD1.iso
/
software
/
online
/
files
/
jyte.exe
/
asputil.py
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Python Source
|
1999-09-02
|
239 b
|
13 lines
"""A utility module for ASP (Active Server Pages on MS Internet Info Server.
Contains:
iif -- A utility function to avoid using "if" statements in ASP <% tags
"""
def iif(cond, t, f):
if cond:
return t
else:
return f