Chetan Kumar writes: > I want to insert data using ZPT. <tal:dummy tal:define="dummy here/your_inserting_ZSQLMethod" /> This assumes that your ZSQL method gets its parameters from REQUEST. Otherwise, it would be: <tal:dummy tal:define="dummy python:here.your_inserting_ZSQLMethod(arg1=val1, arg2=val2, ...)" /> Dieter