B
bbawa1
I have a classic asp page (webfor1.asp). I did this
<form action="ProcessForm.aspx" method="post" name="twcForm"
id="twcForm">
<td><input name="fvFirstName" type="text" id="fvFirstName"
size="20" ></td>
<td><input name="fvLastName" type="text" id="fvLastName"
size="20"></td>
and in proceesForm.aspx page I have to get the data from input fields
"fvFirstName" and "fvLastName" and have to show that data in some
lables in processForm.aspx.
Should I use Request.form("fvFirstName"). but where I have to use
this form objects in ProcessForm.aspx. and How can I reffer
ProcessForm.aspx to Webform1.asp
Thanks a lot.
<form action="ProcessForm.aspx" method="post" name="twcForm"
id="twcForm">
<td><input name="fvFirstName" type="text" id="fvFirstName"
size="20" ></td>
<td><input name="fvLastName" type="text" id="fvLastName"
size="20"></td>
and in proceesForm.aspx page I have to get the data from input fields
"fvFirstName" and "fvLastName" and have to show that data in some
lables in processForm.aspx.
Should I use Request.form("fvFirstName"). but where I have to use
this form objects in ProcessForm.aspx. and How can I reffer
ProcessForm.aspx to Webform1.asp
Thanks a lot.