Re: [Zope] [newbie] cgi-tasks howto? stupid question

2000-07-05 Thread Rajil Saraswat
On Tue, 4 Jul 2000, Rik Hoekstra wrote: i tried out this but this isnt working out for me. can you point out the error. my index_html file is dtml-var standard_html_header FORM method=post action=http://localhost:8080/3inet/print Enter name: INPUT type=text name=valnameBR INPUT

Re: [Zope] [newbie] cgi-tasks howto? stupid question

2000-07-05 Thread Nils Kassube
[EMAIL PROTECTED] (Rajil Saraswat) wrote: No isee the rendered page in the browser but i donot see the dtml-var valname value. it just gives a blank. is something wrong here. Weird. Are you absolutely, positively sure that you use the DTML source you published here? I mean are you sure that

Re: [Zope] [newbie] cgi-tasks howto? stupid question

2000-07-05 Thread Dieter Maurer
Rajil Saraswat writes: i tried out this but this isnt working out for me. can you point out the error. my index_html file is dtml-var standard_html_header FORM method=post action=http://localhost:8080/3inet/print Enter name: INPUT type=text name=valnameBR INPUT type=submit

Re: [Zope] [newbie] cgi-tasks howto? stupid question

2000-07-05 Thread Dieter Maurer
Rajil Saraswat writes: if i donot run the httpd but run only the Zserver then http://localhost will work? "http://localhost" would contact port "80". At least under Unix all ports up to 1024 are priviledged. Only servers running as root can bind to them. For security reasons, you probably

[Zope] [newbie] cgi-tasks howto? stupid question

2000-07-04 Thread Rajil Saraswat
hi, is there any document around which list procedures how to accomplish simple cgi tasks with dtml. say i get a input into a text box thru the browser with the name as valname. Then how do i print this valname thru dtml. ofcourse i checked out with the guides but could locate cgi calls,

Re: [Zope] [newbie] cgi-tasks howto? stupid question

2000-07-04 Thread Nils Kassube
[EMAIL PROTECTED] (Rajil Saraswat) wrote: browser with the name as valname. Then how do i print this valname thru dtml. This is easy. dtml-var valname See the rules for "Name Lookup" in the DTML Reference Guide. There are circumstances where it's not so simple... ofcourse i checked out

Re: [Zope] [newbie] cgi-tasks howto? stupid question

2000-07-04 Thread Nils Kassube
[EMAIL PROTECTED] (Rajil Saraswat) wrote: i tried out this but this isnt working out for me. can you point out the error. The DTML source is okay. This should work. when i submit the form the print page is outputted but the value of the textbox(valname) is not outputted. whats wrong?