on 7/29/01 5:51 PM, Ms. Source Forge at [EMAIL PROTECTED] wrote:

> Initial Comment:
> Hello again. I've got a plain old web form. My form
> tag looks like this:
>
> ----------------------
> <form name="jonPage" action="jonpage.adp?
> page=frontpage" method="POST">
> Please type your name: <input type="text" name="name">
> </form>

You might want to try:

    <form name="jonPage" action="jonpage.adp" method="POST">
    <input type=hidden name="page" value="frontpage">
    ...

This might work out better... Then you could use:

    <%
    set page [ns_queryget page]
    set name [ns_queryget name]
    ...
    %>

The ns_queryget command is part of the included AOLserver Tcl. Hope this
helps!

- Nathan

Reply via email to