[Date Prev][Date Next][Thread Prev][Thread Next][Interchange by date
][Interchange by thread
]
[ic] Simple Form values posting....help please
Hi List,
I am a new to this Interchange Server. I am just trying to post some
values from one page and retrieve in another page and display the same. I
tried the following way but failed.
<Form Name="abc" action="target.html">
Please enter your name : <Input type="text" Name="txt1" Value="">
</Form>
again in abc.html page the following is the code :
[if value txt1]
Welcome [value txt1]
[else]
sorry nothing to display
[/else]
[/if]
Also I would like to the same using the query string (retrieving the values
through URL).