Re: ASPX Form Process

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance

From: Ken Cox [Microsoft MVP] (BANSPAMken_cox_at_sympatico.ca)
Date: 11/16/04


Date: Mon, 15 Nov 2004 22:24:10 -0500

Another way is shown here..

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebhttprequestclassformtopic.asp

"Armando Ruiz" <ArmandoRuiz@discussions.microsoft.com> wrote in message
news:94B79FB8-FE20-4758-910D-C4EC37C80B0A@microsoft.com...
> If I have the following:
> <HTML>
> <FORM ACTION="http://mySite/sample.aspx" METHOD="POST">
> Enter your name: <INPUT NAME="FName"><BR>
> Favorite Ice Cream Flavor:
> <SELECT NAME="Flavor">
> <OPTION VALUE="Chocolate">Chocolate
> <OPTION VALUE="Strawberry">Strawberry
> <OPTION VALUE="Vanilla" SELECTED>Vanilla
> </SELECT>
> <P><INPUT TYPE=SUBMIT>
> </FORM>
> </HTML>
>
> How do I retrieve the form values sent to sample.aspx in code??
>
> Any help is appreciated...
> --
>
> AR