Sending up variables - pelase help

garcon

Well-known member
Joined
Dec 13, 2004
Messages
47
Programming Experience
Beginner
Folks,

I'm kind of new to the VB.NET thing but have landed a bit of a project and would greatly appreciate any advice/suggestions/code samples that you could provide.

I want to "send up" 3 variables from a HTML/Javascript page to a VB.NET "index.aspx" page that I have written.

I know how to send up the the variables:

<FORM NAME = "nextHTMLpage" METHOD = "post" ACTION = "index.aspx?Currency=EN&Culture=EN&Amount=171.56" id="nextHTMLPage">

So you can see I'm sending up 3 variables to "index.aspx" called "Currency", "Culture" and "Amount"


The problem is though I don't know how to "capture" the variables in the "index.aspx". Can anyone help me please? I'm desperate. I'm sure this is simple enough but I havn't done it before...
Any comments/suggestions/code samples much appreciated....

Cheers,
G.
 
Thanks - while a good article - I'm looking for something dealing with send variables from a HTML page pto a web form via the "post" tag.

Any suggestions?

Cheers,
G.
 
:S
You post to index.aspx?Currency=whatever.....
You then use Request.QueryString["Currency"]
Isn't that what you wanted????

TPM
 
Back
Top