[Zope] Re: next part of tal:atrributes problem

2005-03-31 Thread prabuddha ray
for lennart n anrdeas, sir, i had built this page in asp earlier n now need to create a zpt ver. d javascript function used for submit is below: function sub_click(){ document.nlogin.login.value='y' // 'login' is flag for valid login n not bein used in zpt till now.

[Zope] Re: next part of tal:atrributes problem

2005-03-31 Thread prabuddha ray
for lennart n anrdeas, sir, i had built this page in asp earlier n now need to create a zpt ver. d javascript function used for submit is below: function sub_click(){ document.nlogin.login.value='y' // 'login' is flag for valid login n not bein used in zpt till now.

[Zope] Re: next part of tal:atrributes problem

2005-03-31 Thread Phillip Hutchings
below is python script c_nlogged: request = container.REQUEST RESP = request.RESPONSE passwd = request.password1 user = request.username, See the comma on the end of the user= line? That's your syntax error. When you get a syntax error always check a couple of lines further up the script.