Newbie Button Question

M

MROPARTNER

I have the following button in an HTML e-mail that I am sending. How
do I change the code, so if the "Yes" Button is pressed then the text
box will = "Yes" ?

Thanks

<html>

<head>
<title>New Page 1</title>
</head>

<body>

<p><input type="Submit" value="Yes" name="Yes"></p>
<p><input type="text" name="T1" size="20"></p>

</body>

</html>
 
A

arcarius

I have the following button in an HTML e-mail that I am sending. How
do I change the code, so if the "Yes" Button is pressed then the text
box will = "Yes" ?

Thanks

<html>

<head>
<title>New Page 1</title>
</head>

<body>

<p><input type="Submit" value="Yes" name="Yes"></p>
<p><input type="text" name="T1" size="20"></p>

</body>

</html>
Are you saying you want the Submit button to have Yes instead of Submit?
If that is what you want, what you have should be fine. If what you want
is that after they submit whatever it is in the text box, you will
display Yes, then you need to direct an action to happen after it the
Submit button is clicked. In FP, you can accomplish this by making a
page that replaces the traditional Thank You page.

I'm still not really sure if this answers your question.

Arcarius76
 
Top