problem getting vars out of query string
Hi, All. If I type an url with querystring parameters into my browser I can access the variables just fine with DTML. But if I post to an url with querystring parameters they are not visible in DTML. For example: <form action="index_html?var1=10&var2=20" method="post"> When submitting that form, var1 and var2 are not visible in index_html. Does anyone know what I'm doing wrong? thanks -Kevin __________________________________________________ Do You Yahoo!? Make a great connection at Yahoo! Personals. http://personals.yahoo.com
Query string parameters are in a form post are not standard html. Use hidden form variables: <input type="hidden" name="var1" value="10"> ----- Original Message ----- From: "Kevin Lewandowski" <kevinsl@yahoo.com> To: <zope@zope.org> Sent: Monday, October 15, 2001 10:06 PM Subject: [Zope] problem getting vars out of query string
Hi, All. If I type an url with querystring parameters into my browser I can access the variables just fine with DTML.
But if I post to an url with querystring parameters they are not visible in DTML. For example:
<form action="index_html?var1=10&var2=20" method="post">
When submitting that form, var1 and var2 are not visible in index_html.
Does anyone know what I'm doing wrong?
thanks
-Kevin
__________________________________________________ Do You Yahoo!? Make a great connection at Yahoo! Personals. http://personals.yahoo.com
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
participants (2)
-
Andy -
Kevin Lewandowski