Request.form

  • Thread starter Thread starter bbawa1
  • Start date Start date
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.
 
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.

http://groups.google.com/group/micr....aspnet/browse_thread/thread/f5addf17bc2a9da2
 
Back
Top