10 Mar
2004
10 Mar
'04
7:56 a.m.
Hello ! In mod_python I can send the result to the browser with o.write(Msg) command immediately (o is the object of the connection). So I can show the progress of the long operation like this: o.content_type="html" o.write("Long process with progress") for i in range(1,101): o.write(str(i)+"% processed"); sleep(100) o.write("Finished...") So I can see the whole progress in the browser. I want to create same function in zope. Can I do it ? Thanx for every help ! -- Best regards, fowlertrainer mailto:fowlertrainer@anonym.hu